Search found 3 matches
- 2015-08-10T07:31:53-07:00
- Forum: Bugs
- Topic: Odd behavior when recoloring a black and white Photoshop create tiff
- Replies: 10
- Views: 3125
Re: Odd behavior when recoloring a black and white Photoshop create tiff
Took a little time to dig it out of the RMagick documentation but I found this manipulate! do |img| img.colorspace = Magick::SRGBColorspace mg.set_channel_depth Magick::AllChannels, 8 # Begin Recoloring That fixed my problem :) Black and white tiffs can now be recolored with the whole spectrum of ...
- 2015-08-06T19:15:03-07:00
- Forum: Bugs
- Topic: Odd behavior when recoloring a black and white Photoshop create tiff
- Replies: 10
- Views: 3125
Re: Odd behavior when recoloring a black and white Photoshop create tiff
Would you happen to know what the comparative command in RMagick would be to call +depth?
- 2015-08-06T17:56:19-07:00
- Forum: Bugs
- Topic: Odd behavior when recoloring a black and white Photoshop create tiff
- Replies: 10
- Views: 3125
Odd behavior when recoloring a black and white Photoshop create tiff
I am at trying to recolor a black and white photoshop tiff and ran into this problem. I am attempting to recolor the white in this image https://github.com/BrandonMathis/magik_tiff_recolor_bug/blob/master/black_square.tif?raw=true to #8649ba convert black_square.tif -fill "#8649ba" -opaque "#FFFFFF ...