Search found 5 matches

by alea
2012-10-22T03:59:00-07:00
Forum: Users
Topic: identify -verbose lists Clipping Path
Replies: 10
Views: 17104

Re: identify -verbose lists Clipping Path

It helps if I use this command. it only outputs something, if the path is a clipping path.

Code: Select all

identify -format '%[8BIM:2999,2999:#1]' <myimage>
by alea
2012-10-17T03:02:33-07:00
Forum: Users
Topic: identify -verbose lists Clipping Path
Replies: 10
Views: 17104

Re: identify -verbose lists Clipping Path

Maybe I misunderstood something but I simply want to find out if an image contains a clipping path. This is used in a script like: $has_image_clip_path = `identify -verbose "$infile" | grep "Clipping path:"`; if($has_image_clip_path) { <some convert command using -clip etc.> } else { <some other ...
by alea
2012-10-16T03:27:45-07:00
Forum: Users
Topic: identify -verbose lists Clipping Path
Replies: 10
Views: 17104

Re: identify -verbose lists Clipping Path

Hello,

I assume if identify -verbose outputs

Clipping path: ... etc. that the file contains a clipping path. Is this wrong?

This is the example file
https://web.emmet-software-labs.com/tes ... stfile.zip

Thanks a lot.
Alea
by alea
2012-10-15T02:55:10-07:00
Forum: Users
Topic: identify -verbose lists Clipping Path
Replies: 10
Views: 17104

Re: identify -verbose lists Clipping Path

Has noone an idea why identify -verbose lists my paths as clipping path?

Alternatively: Maybe someone has an idea how to get the information if the image file contains a clipping path or not in a different way.

Any help or hints would be really appreciated.
by alea
2012-10-11T07:31:29-07:00
Forum: Users
Topic: identify -verbose lists Clipping Path
Replies: 10
Views: 17104

identify -verbose lists Clipping Path

Hello, I'm using ImageMagick to automate file downloads from an image database. ImageMagick is running on a unix system and I wrote a small perl script which converts the inputfile to 144 dpi png file, no matter which image type (tiff, eps-jpeg, jpg ... ) is downloaded. In the script I use two ...