Search found 40 matches

by josephaaroncampbell
2015-08-19T10:22:53-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

I present a working windows batch file that contains the '%[tiff:has-layers]" to return the file names of images that contain photoshop layers: :: this script returns true or false if tiff file has layers, then output filename of true images to txt file @ECHO OFF :: change the drive to the supp...
by josephaaroncampbell
2015-08-17T07:49:34-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

Thanks for providing that file (I love the colors :) ). I just submitted a patch to our GIT repository to resolve this issue for LSB TIFF files. This will be resolved in the next version of ImageMagick (6.9.2-0). Thanks! and I just downloaded the newest binary and can confirm that this is working f...
by josephaaroncampbell
2015-08-11T14:28:41-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

Would it be possible for either of you to share a 16-bit LSB Tiff file from Photoshop? I would like to test my changes with a 16-bit file also. The following link is for a 16bit tiff with layers from photoshop. I confirmed the endianness with IM as LSB using the identify -verbose command. https://w...
by josephaaroncampbell
2015-08-10T10:09:46-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

When I save tiff in Photoshop (CS6 Windows), if I select Byte Order as Macintosh, the bytes will becomes 8BIMLayr, that is detectable layer from ImageMagick. But if I select IBM PC, it becomes MIB8ryaL that is undetectable for ImageMagick. I had thought about this earlier. I wish I would have tried...
by josephaaroncampbell
2015-08-10T09:23:05-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

Can you share your image on something like dropbox? The one where you think/know that it has layers? The following link has two image files: https://www.dropbox.com/sh/xrfaiejq7k8xg06/AAC4Xx7a1kdc9bye1zIKgmjCa?dl=0 1. a layered tiff created using Adobe Photoshop CS5 called "layers_pSHOP.tif&qu...
by josephaaroncampbell
2015-08-07T14:10:28-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

The attribute has been added an will be available in the next release (6.9.1-10) and can be used like this: D:\Images\tif\layers>identify -format "%[tiff:has-layers]" OneLayerAgainstTransparency.tif[0] true Hello! I hope i can get your advice at this moment. So I have been going through t...
by josephaaroncampbell
2015-08-03T13:11:36-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Re: Tiff with layers boolean?

Thank You ALL for your responses. I am busy working my way through all of this information. I will surely update with my progress soon.

Thank You again!
by josephaaroncampbell
2015-07-14T23:02:57-07:00
Forum: Users
Topic: Tiff with layers boolean?
Replies: 32
Views: 42576

Tiff with layers boolean?

Hello! So I have read as much as i can find about ImageMagick and tif files with layers. My goal is to simply return a yes or no as to whether or not a .tif has extra layers. (as in more than just the base layer [0]) I have tried to return the layer information with: identify -format %p -%n image.ti...
by josephaaroncampbell
2015-07-14T22:38:04-07:00
Forum: Users
Topic: use mogrify on folder with multiple image formats?
Replies: 2
Views: 4898

Re: use mogrify on folder with multiple image formats?

Thank You fmw42! this worked just as I needed it to. The path was something on my list to add so thank you for that information as well.
by josephaaroncampbell
2015-07-14T19:45:36-07:00
Forum: Users
Topic: use mogrify on folder with multiple image formats?
Replies: 2
Views: 4898

use mogrify on folder with multiple image formats?

Hello! So I know how to use the following command to batch convert a folder of images: mogrify -format jpeg *.png But what if the folder of images I want to convert also has '.tif' or '.dng' included as well? Is there another option for ' *.png " that will include any file type? tried the follo...