Search found 10 matches

by wellyman1
2015-09-02T11:41:58-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

My goal is to reliably process tifs with standard transparency as part of my workflow and not have the proprietary adobe transparency interfere with color conversions. To achieve this 1. since tiff:37724 is proprietary to adobe and contains layer and transparency info specific to adobe I will remove...
by wellyman1
2015-09-01T11:14:32-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

Thanks for all the help! This looks promising but I am not out of the woods yet. I am eventually going to incorporate this into a Magick.net app where the user provides files. So I will not know the number of layers before hand. How would I modify this command to account for when a tiff has multiple...
by wellyman1
2015-08-31T12:11:08-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

I was able to run this successfully.
by wellyman1
2015-08-31T09:05:38-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

If I open the original in photoshop and save it without layers with transparency I can convert it fine with convert orig_saved_wo_layers_w_tx.tif -profile /Users/tewellman/profiles/sRGB.icc orig_saved_wo_layers_w_tx_out.tif If I open the original in photoshop and save it with layers with transparenc...
by wellyman1
2015-08-30T12:54:01-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

should I go back to approaching it this way? it did produce the desired result

convert Original.tif -alpha off /Users/tewellman/profiles/sRGB.icc -alpha on rgbout6.tif
by wellyman1
2015-08-29T14:53:50-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

I tried the last two commands but no luck. You make a good point about going back to convert Original.tif[0] -profile sRGB.icc Original_rgb.tif and seeing why I can't get it to work on windows do I need to open another ticket to have some one look at it? Sorry I am new here so I don't have the proce...
by wellyman1
2015-08-29T11:55:46-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

When I save the image as a tiff without layers it converts successfully, Is there a way for Imagemagick to combine the layers into one and maintain transparency? when I look through the examples they are geared toward combining separate images not layers within an image. I suppose I could make a tra...
by wellyman1
2015-08-27T13:37:14-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

I tried using layer 0, it did not work Convert Original.tif[0] -profile /Users/tewellman/profiles/sRGB.icc Originalzeroout.tif convert.exe: Incompatible type for "RichTIFFIPTC"; tag ignored. `TIFFFetchNormal Tag' @ warning/tiff.c/TIFFWarnings/878. maybe I will download Q16 and compare I am...
by wellyman1
2015-08-26T13:32:31-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

Re: converting cmyk tif with background transparency to rgb tiff

when I tried the command above I got the same result as before.

but this worked

convert Original.tif -alpha off /Users/tewellman/profiles/sRGB.icc -alpha on rgbout6.tif
by wellyman1
2015-08-26T08:46:53-07:00
Forum: Users
Topic: converting cmyk tif with background transparency to rgb tiff
Replies: 47
Views: 37435

converting cmyk tif with background transparency to rgb tiff

I am having trouble converting a cmyk tif with background transparency to rgb. After the conversion it appears the black values are off and when opened in photoshop the visual is strange. The goal is to have a proper conversion, maintain the transparent background and have the file appear normally w...