Search found 116 matches

by Carter J
2016-06-09T22:54:58-07:00
Forum: Users
Topic: Limiting the time of any ImageMagick command
Replies: 3
Views: 4107

Re: Limiting the time of any ImageMagick command

Thanks for the response @snibgo. IM Version: Version: ImageMagick 6.9.1-0 Q16 x86_64 2015-03-30 http://www.imagemagick.org Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC License: http://www.imagemagick.org/script/license.php Features: DPC Modules OpenMP Delegates (built-in): bzlib djvu ff...
by Carter J
2016-06-09T05:25:01-07:00
Forum: Users
Topic: Limiting the time of any ImageMagick command
Replies: 3
Views: 4107

Limiting the time of any ImageMagick command

Hi, We are trying to limit the elapsed time of ImageMagick commands, but we are failing in limiting them. We have used the following link as reference: http://www.imagemagick.org/script/resources.php With reference to the above link we included the below line in policy.xml file(For limiting the time...
by Carter J
2015-11-03T05:36:35-07:00
Forum: Users
Topic: Transparent TIFF lost background
Replies: 12
Views: 11834

Re: Transparent TIFF lost background

We are still facing this issue, any help ?
by Carter J
2015-05-20T05:26:34-07:00
Forum: Bugs
Topic: Issue with opening resolution changed TIFF file in Photoshop
Replies: 23
Views: 24254

Re: Issue with opening resolution changed TIFF file in Photoshop

Can you confirm that even a simple resize causes your file to not open in Photoshop? convert inputImage.tif[0] -reisze 50% outputImage.tiff If this is happening we might have a bigger challenge :) I think we will have to read the layer data resize the layers and write them back to the file (in the ...
by Carter J
2015-04-16T22:29:48-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

IM may deal with background transparency and alpha channel transparency differently. You check each in Photoshop to see which is giving you trouble. Then use EXIFTOOL to check the image before IM processing to know which kind of transparency you have in that image. This is just a guess. The IM deve...
by Carter J
2015-04-02T03:51:25-07:00
Forum: Bugs
Topic: Issue with opening resolution changed TIFF file in Photoshop
Replies: 23
Views: 24254

Re: Issue with opening resolution changed TIFF file in Photoshop

You can only accomplish that after we have researched how the tiff:37724 profile works and update it when the density changes. I have no idea when we will be able to find time to do this. Hi, Any estimated timeline/release version for this. We stuck with processing tiff files due to this issue Than...
by Carter J
2015-04-02T03:45:22-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

Hi,

Thanks for suggestion.

We will check and update you
by Carter J
2015-03-26T00:28:43-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

Hi,
Could anyone suggest, how to resolve above issue?
by Carter J
2015-03-15T22:38:21-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

So, for this image, "-alpha off" does what you probably want: convert MultiChannelTiffFile.tif -alpha off -units pixelsperinch -resample 72 output.jpg Thank you... Exactly we are facing problem here.. We are using generic command to deal with all types of TIFF, so to deal with above file ...
by Carter J
2015-03-12T23:43:34-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

"-flatten" isn't needed here. convert MultiChannelTiffFile.tif x2.jpg Thanks for looking into it.. Above command is working, but when we are trying to change resolution or applying "-layers merge" the same is not working...We are using below command to change resolution.. conver...
by Carter J
2015-03-11T22:34:25-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

Hi,

Could anyone suggest how to proceed with these kind of images...
by Carter J
2015-03-03T22:34:09-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

The same command works for both images: convert MultiChannelTiffFile.tif -backgound white -flatten x2.jpg Hi, This command not worked for below file https://www.dropbox.com/s/7t2qkk9yzaops3h/MultiChannelTiffFile.tif?dl=0 Actual image lost and we are able to view only background of that image. IM ve...
by Carter J
2015-03-03T02:56:01-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

According to "identify", MultiChannelTiffFile.tif has RGB and A but no clip path, so removing transparency is easy: convert -verbose MultiChannelTiffFile.tif -alpha off x.jpg TransparentBGTiffFile.tif is more awkward. Transparent pixels contain data that is hidden by either the alpha tran...
by Carter J
2015-03-02T22:50:31-07:00
Forum: Users
Topic: Issue with dealing TIFF files, contains channels and transparency
Replies: 25
Views: 18439

Re: Issue with dealing TIFF files, contains channels and transparency

IM doesn't deal with layers. convert in.tiff -format %[opaque] info: This returns "true" if all the pixels are fully opaque, or "false" if there is any transparency. Does that answer your question? Thanks for reply.. Actually we are trying to figure out what "alpha off"...
by Carter J
2015-03-02T07:03:58-07:00
Forum: Bugs
Topic: Output image not preserving CMYK color ratios and Blue lines misplaced
Replies: 12
Views: 8186

Re: Output image not preserving CMYK color ratios and Blue lines misplaced

Hi,

Any update on how to preserve CMYK color ratios in the output file (even after applying profiles)?