Announcement

Collapse
No announcement yet.

Auto adjust colors / Auto korrektur

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Auto adjust colors / Auto korrektur

    Hallo

    I am looking for the command line option:
    Auto adjust colors / Auto korrektur

    Did anyone know this?

    BIG THX!!

    #2
    Sorry, don't think so. You can check the command line options here :
    0.6180339887
    Rest In Peace, Sam!

    Comment


      #3
      Auto adjust colors / Auto korrektur

      THX for quick answer but try to find out how i can use the Auto adjust colors with command line - any ideas ?

      Comment


        #4
        There is no command line switch for Auto Adjust Colors. You can do a conversion with it, but it must be engaged in the INI or in the Advanced Batch Dialog GUI. You would specify the /advancedbatch switch to apply it.

        i_view32.ini
        [Batch]
        AdvAutoRGB=1

        Comment


          #5
          Auto adjust colors / Auto korrektur

          THX for Answer!!

          You are my good father of IrfanView!!

          Now is my command is:
          i_view32.exe <<Path for jpg>> /advancedbatch
          ... and it works but i want to do this hidden, bacause afterwards i want to do reduce color. And than i get a good black/with picture

          But this should done hidden?

          br from Austria
          Last edited by kohle; 22.02.2009, 10:43 AM.

          Comment


            #6
            solved: Auto adjust colors --&gt; BW

            1st Step: (Auto adjust colors) (with *.ini batch)
            i_view32.exe <<Path for jpg>> /advancedbatch

            2nd Step:
            /bpp=1 for black and with picture

            3rd Step:
            in connection with the ccommand "convert" you can overwrite the file and save as *.jpg

            Voila - color picture2BW

            THX to this forum

            Comment


              #7
              You can do it all silently in a batch file:

              Code:
              i_view32.exe c:\*.jpg /ini="c:\temp" /advancedbatch /convert=c:\temp\*.png
              i_view32.exe c:\temp\*.png /bpp=1 /convert=c:\temp\*.jpg
              del c:\temp\*.png
              Here you can convert your JPG files to PNG using advanced settings in the INI specified. Then you convert those files to black and white JPGs. Afterwards, it deletes the intermediate PNGs. It converts to PNG so lossy compression is only at the end.

              Make a shortcut to the batch file and change its properties to start minimized. Then just run the shortcut.

              You can also skip the INI and use the program INI if your settings are there. If you want drag and drop, you will need to use variables in the script.

              Comment


                #8
                Yep. Making a batch-file is a quite underestimated way of getting things done.
                0.6180339887
                Rest In Peace, Sam!

                Comment

                Working...
                X