Search found 9 matches
- 2014-09-09T09:03:27-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
Windows shouldn't need different profiles. Are you using the same version of PS? With all the same settings? I'm using the same PSD file. I'm not using Photoshop as part of my script. The (python) script generates a call out to ImageMagick. I tarred up my folder from my Mac and copied it over to my ...
- 2014-09-09T08:53:40-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
Windows shouldn't need different profiles. Are you using the same version of PS? With all the same settings? I'm using the same PSD file. I'm not using Photoshop as part of my script. The (python) script generates a call out to ImageMagick. I tarred up my folder from my Mac and copied it over to my ...
- 2014-09-09T08:43:09-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
I'll check some more but I'm pretty sure they do not have profiles. I had another hiccup this morning. All my work yesterday was on my Mac. I copied all the files over to my Windows box (running Cygwin) and the colors are wrong again, although in a different way. I copied over the exact profile ...
- 2014-09-08T17:09:53-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
If the PSD does not have a profile imbedded and it is cmyk, then you need two profiles, one to tell it it is cmyk (US Web Coated Swop) and the second to convert to sRGB. convert in.psd -profile path2/USWebCoatedSWOP.icc -profile path2/sRGB.icc -layers merge out.png With current versions of IM, you ...
- 2014-09-08T15:58:48-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
... and I noticed an option to Embed Color Profile: U.S. Web Coated (SWOP) ... That's it. PS embeds the profile in the file. Then you can use one "-profile" command to convert it to sRGB. (Your "-profile" command should give the sRGB.icc filename, not the CMYK SWOP filename.) Eg: convert in.psd ...
- 2014-09-08T15:14:33-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
Here is the latest - My original PSD is 'untagged' meaning it does not have a color profile. I noticed that the good PNG exported from Photoshop CS6 via Save for Web has a profile called "sRGB IEC61966-2.1(8bpc)" So I downloaded a profile called "sRGB_IEC61966-2-1_black_scaled.icc" from http://www ...
- 2014-09-08T14:37:50-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
Please provide a PSD example of your input and the corresponding PNG output. You can upload to any free service such as dropbox.com and put the URLs here. I am on OSX Snow Leopard with IM 6.8.9.7 Q16 and have an older PS CS, so I can check this out for your. Often it is a matter of the loss or ...
- 2014-09-08T14:34:21-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
Re: PSD to PNG convert, color change
I suppose your screen shots are taken from PS. Yes, they are from Photoshop 1. You are flattening all the layers together. Perhaps you only need one layer.< Unfortunately I do need a few of the layers. If I do a PNG of all layers or only the ones I want, I get the same color problem so I thought it ...
- 2014-09-08T13:45:08-07:00
- Forum: Users
- Topic: PSD to PNG convert, color change
- Replies: 16
- Views: 8387
PSD to PNG convert, color change
I know there have been posts about this previously but I've followed them without success towards my problem. See: http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=23257 https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23313 http://www.imagemagick.org/discourse-server ...