ImageMagick: create a video color bars image

Step-by-Step descriptions of how to do things.
Post Reply
User avatar
^rooker
Site Admin
Posts: 1481
Joined: Fri Aug 29, 2003 8:39 pm

ImageMagick: create a video color bars image

Post by ^rooker »

I wanted to create color bars, commonly known in test videos. I know that it's proabably not SMPTE conform, but fair enough.

In order to spare myself some time, I figured out how to generate a full color bar image with ImageMagick. It's amazingly efficient and simple:

Code: Select all

convert -size 92x154 xc:#cccccc xc:#ffff00 xc:#00ffff xc:#00ff00 xc:#ff00ff xc:#ff0000 xc:#0000ff +append color_bars.png
Jumping out of an airplane is not a basic instinct. Neither is breathing underwater. But put the two together and you're traveling through space!
Post Reply