Search found 3 matches
- 2011-09-06T09:18:38-07:00
- Forum: Users
- Topic: Script to make 1-color images
- Replies: 6
- Views: 16120
Re: Script to make 1-color images
Okay, we're narrowing it down, at least. I just tried the following from the command line: convert -size 1920x1080 xc:"#000005" 000005.jpg and got a 1920x1080 with constant color #010005 Then I tried convert -size -1920x1080 xc:"#000005" 000005.png and got a 1920x1080 with constant color #000005 ...
- 2011-09-05T21:42:16-07:00
- Forum: Users
- Topic: Script to make 1-color images
- Replies: 6
- Views: 16120
Re: Script to make 1-color images
hex color values need to be in quotes (as do rgb(...) values). Also DST is a no-op. Try DstIn Okay, I was just basing things on what I read on that page I referenced (hence the -Dst with nothing else). so try convert base.jpg -background "$f" -compose DstIn -flatten $g.jpg Same results. as a test ...
- 2011-09-04T21:07:55-07:00
- Forum: Users
- Topic: Script to make 1-color images
- Replies: 6
- Views: 16120
Script to make 1-color images
Hi, Just for fun (and thinking about a pixel-test program in the long run) I wanted to generate a series of 1920x1080 images that are each one color, 16 million + images, the colors ranging from #000000 to #FFFFFF. So of course I'm not going to do this by hand, it's a perfect job for a script. I'm ...