Search found 3 matches

by psimeon
2018-06-30T14:16:24-07:00
Forum: Users
Topic: Converting HEIC images with Display P3 color profile
Replies: 14
Views: 22828

Re: Converting HEIC images with Display P3 color profile

Put double quotes around your path to the icc file. Imagemagick thinks you have two words due the space. convert IMG_8938.HEIC -profile "Display\ P3.icc" -profile sRGB2014.icc IMG_8938_srgb.jpg The space was escaped with the backslash.'I tried with quotes, same effect. Convert found the f...
by psimeon
2018-06-29T14:54:59-07:00
Forum: Users
Topic: Converting HEIC images with Display P3 color profile
Replies: 14
Views: 22828

Re: Converting HEIC images with Display P3 color profile

If the input has no profile (icc, icm), then add two profiles, one for what the input color type is and one for what you want for the output convert input -profile path/to/profile1.icc -profile path/to/profile2.icc output I tried to do that convert IMG_8938.HEIC -profile Display\ P3.icc -profile sR...
by psimeon
2018-06-29T12:22:49-07:00
Forum: Users
Topic: Converting HEIC images with Display P3 color profile
Replies: 14
Views: 22828

Converting HEIC images with Display P3 color profile

I am trying to convert HEIC images shot with the lastest generation of iPhones. They are in HEIC format and use the "Display P3" color profile. When I try to convert the images to JPGs the colors get washed out. The profile in the picture is an exif-profile, not an ICC profile. I assume 'c...