Apologies for tacking onto the thread - the symptoms were the same so I thought it was relevant.
And thanks for pointing out my incorrect PNG output syntax.
Search found 10 matches
- 2019-04-09T16:15:46-07:00
- Forum: Bugs
- Topic: possible bug IM 7 extracting TIFF layer.
- Replies: 7
- Views: 15336
- 2019-04-09T11:36:24-07:00
- Forum: Bugs
- Topic: possible bug IM 7 extracting TIFF layer.
- Replies: 7
- Views: 15336
Re: possible bug IM 7 extracting TIFF layer.
Photoshop PSD file: https://www.dropbox.com/s/3h0d0q1aslr1m13/move_oolong.psd Composite (layer 0): https://www.dropbox.com/s/dyobhg1rhf4qj37/move_oolong_composite_from_7.0.8.14.png Layer 9 (7.0.8.30/32/39/40 beta) - broken? https://www.dropbox.com/s/f026ic3rwcisqhd/move_oolong_layer_9_from_7.0.8.32 ...
- 2019-04-09T10:20:57-07:00
- Forum: Bugs
- Topic: possible bug IM 7 extracting TIFF layer.
- Replies: 7
- Views: 15336
Re: possible bug IM 7 extracting TIFF layer.
I'm having the same exact problem, except with Photoshop PSD files. If I tell it to extract all layers to PNG, I get the individual layer images, but if I target a specific layer it renders black. I tested both 7.0.8-32 and latest 7.0.8-39 64-bit releases on Windows 10 (ImageMagick-7.0.8-32-Q16-x64 ...
- 2018-03-05T15:31:15-07:00
- Forum: Users
- Topic: Best way to detect blank transparent image
- Replies: 5
- Views: 9275
Re: Best way to detect blank transparent image
Apologies for the invalid command. I meant to use this for determining the bounding box:
Thanks for the recommended approach!
Code: Select all
identify -format "%@" empty.png
- 2018-03-05T12:52:39-07:00
- Forum: Users
- Topic: Best way to detect blank transparent image
- Replies: 5
- Views: 9275
Best way to detect blank transparent image
I want to determine the best/fastest way to detect if an image is entirely blank (assume image has alpha channel). Test image https://www.dropbox.com/s/46zdazxrgy83gmc/empty.png?dl=0 Possible approaches: 1. Check for mean of zero (or standard deviation of zero?) identify -format "%[opaque] %[fx:mean ...
- 2017-08-09T19:13:05-07:00
- Forum: Users
- Topic: Problem saturating a CMYK image
- Replies: 3
- Views: 4856
Re: Problem saturating a CMYK image
Thanks, that was the piece I was missing. I was hoping I could perform the modulation in CMYK in order to emulate a workflow from Photoshop, where this is possible. This particular workflow does a lot in CMYK mode and I was hoping to avoid a lot of CMYK -> sRGB -> CMYK conversions.
- 2017-08-09T18:08:59-07:00
- Forum: Users
- Topic: Problem saturating a CMYK image
- Replies: 3
- Views: 4856
Problem saturating a CMYK image
I'm trying to do a simple saturation bump on a CMYK image. I'm starting with a PNG image containing an embedded Adobe RGB profile, convert to CMYK with a provided color profile, then modulate the saturation by 20%: convert sample.png -profile USWebCoatedSWOP.icc sample_CMYK.tif convert sample_CMYK ...
- 2016-08-17T14:37:28-07:00
- Forum: Users
- Topic: How to: generate CMYK TIFF with additional spot color channels
- Replies: 3
- Views: 5617
How to: generate CMYK TIFF with additional spot color channels
I've looked at following posts for reference: "Combining multichannel images" http://imagemagick.org/discourse-server/viewtopic.php?t=21159 "Combining Channel Images with custom colors" http://imagemagick.org/discourse-server/viewtopic.php?t=28146 The first post is closest to what I need. In ...
- 2016-08-15T09:46:06-07:00
- Forum: Bugs
- Topic: bug when extracting single LAB channel
- Replies: 5
- Views: 10788
Re: bug when extracting single LAB channel
Ah. I assumed the channel names should have corresponded to those provided by "-list channel". (The docs do suggest this: "To print a complete list of channel types, use -list channel."). But I see they are explicitly not valid '-channel' inputs per the docs. Thank you for the clarification.
- 2016-08-12T15:59:18-07:00
- Forum: Bugs
- Topic: bug when extracting single LAB channel
- Replies: 5
- Views: 10788
bug when extracting single LAB channel
Converting an sRGB PNG file to LAB colorspace before separating channels works fine; however if I attempt to limit it to a specific LAB channel the output is inconsistent. (I get the same results if I start with a LAB colorspace TIFF and don't perform any colorspace conversion.) magick foo.png ...