Announcement

Collapse
No announcement yet.

Batch create solid color images

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

    Batch create solid color images

    Greetings,

    Is it possible to use command line options to create an image file based on :
    • file_name ( "BLK10000" )
    • format ( loseless "TGA" "BMP" etc )
    • fixed size ( 1536,864 )
    • solid RGB color ( 0,128,128 )
    • save the file upon exiting each session


    I would make 60 or so of these at a time changing the RGB color with each image.

    I want use these as a fading transition sequence between animation scenes.

    TIA -David

    4.44
    Windows 7-64 bit

    #2
    Here's what I have so far :

    A blank TGA file solid.tga

    Code:
    @echo on
    c:\progra~1\IrfanView\i_view64.exe c:\solid.tga /resize=(1536,864) /convert=c:\b10000.tga
    pause
    I haven't figured out how to change / modify the background color ( in R G B )

    TIA -David

    Comment


      #3
      ImageMagick / GraphicsMagick
      Code:
      convert -size 123x456 xc:#112233 out.png
      IV 4.56 32-bit

      Comment


        #4
        Thanks ! I use ImageMagick every day. Hadn't thought about it ! -Thanks! -David

        Comment


          #5
          It works very well :

          The end result I was looking for - Fade to dark brown

          Thanks ! -David
          Last edited by David Bethel; 03.01.2017, 01:34 PM.

          Comment

          Working...
          X