Search found 8 matches
- 2014-07-28T13:15:58-07:00
- Forum: Users
- Topic: Variation in color values from input to output
- Replies: 2
- Views: 2219
Re: Variation in color values from input to output
Gotcha, thanks!
- 2014-07-28T12:06:46-07:00
- Forum: Users
- Topic: Variation in color values from input to output
- Replies: 2
- Views: 2219
Variation in color values from input to output
Using the command: convert -size 850x850 canvas:'rgb(255,0,0)' testBox.jpg I was able to create a lovely red box, but when I take it into photoshop and check the value of the red it reads as 254,0,0. When I try it with green I get 0,255,1 and with blue it's 0,0,254. I also tried adding a profile to ...
- 2014-02-25T18:06:48-07:00
- Forum: Users
- Topic: Making a color palete
- Replies: 2
- Views: 3907
Re: Making a color palete
awesome that's perfect!
- 2014-02-25T14:44:18-07:00
- Forum: Users
- Topic: Making a color palete
- Replies: 2
- Views: 3907
Making a color palete
So I'm working a making a color palette that can be pulled from an image. Thus far I've gotten this: convert input.jpg +dither -colors 16 -unique-colors -scale 2110% filename_palette.gif Which is great, it's nearly there, but when I open the images in photoshop and zoom in there is a single strip of ...
- 2014-02-19T11:49:45-07:00
- Forum: Users
- Topic: Scientific to decimal?
- Replies: 4
- Views: 2932
Re: Scientific to decimal?
Fantastic, thank you so much.
- 2014-02-18T19:04:52-07:00
- Forum: Users
- Topic: Scientific to decimal?
- Replies: 4
- Views: 2932
Scientific to decimal?
I'm using
to get the total pixels of an image, but when the number gets to big IM spits it out in scientific notation.
Is there any way to get it to only use decimals for the output?
Code: Select all
identify -format "%[fx:w*h]" filename
Is there any way to get it to only use decimals for the output?
- 2014-02-06T12:34:37-07:00
- Forum: Users
- Topic: Piping or One command and then another
- Replies: 2
- Views: 4571
Piping or One command and then another
I'm confused about how to combine two commands, I believe it's called piping. I want to convert a tif to a png, and then use the converted png to composite. convert tif.tif png.png -then- composite -compose Dst_Over -tile ~/checkerboard.gif png.png output.jpg I'm just unclear about how to do this ...
- 2014-01-30T17:16:23-07:00
- Forum: Users
- Topic: Adding Checkerboard pattern to transparency
- Replies: 1
- Views: 3145
Adding Checkerboard pattern to transparency
So I'm working on making IM convert pngs and gifs with transparency to jpgs and use a checkerboard pattern to represent the transparency. Coming from photoshop the built in checkerboard pattern in IM is really dark and doesn't really read right. I've worked out one solution of bringing in a captured ...