Search found 3 matches

by tterpell
2018-06-12T06:56:04-07:00
Forum: Users
Topic: Convert Images to LAB
Replies: 7
Views: 5241

Re: Convert Images to LAB

WEll, i made progress. I split the conversion into two steps: At first, i converted the original image to a sRGB colorprofile using convert ECI_RGB.tif -profile Profile/sRGB2014.icc out.tif Then, i converted the resultfile to LAB: convert out.tif -colorspace LAB lab.tif But i needed to install ...
by tterpell
2018-06-11T23:55:46-07:00
Forum: Users
Topic: Convert Images to LAB
Replies: 7
Views: 5241

Re: Convert Images to LAB

The Version i Use is ImageMagick 7.0.7-38 Q16 x86_64 2018-06-02. The System i am on is macOS 10.13.5. Using this Command magick convert in.tif -colorspace LAB -intent absolute out.tif i get the following result (on the left is the in.tif, on the right the out.tif): https://drive.google.com/file/d ...
by tterpell
2018-06-11T05:11:28-07:00
Forum: Users
Topic: Convert Images to LAB
Replies: 7
Views: 5241

Convert Images to LAB

Hello, i am completely new to Imagekick and i need to convert different types of images to the LAB colorspace. I Am currently using this command: magick convert "input4.tif" -flatten +profile tiff:37724 -colorspace Lab -auto-orient -intent Absolute -compress LZW "output4.tif" The problem is, that ...