Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: Convert rgb byte array to cymk byte array

$
0
0
It might be better to use the TransformColorSpace of MagickImage to change the image from RGB to CMYK:
image.TransformColorSpace(ColorProfile.SRGB, ColorProfile.USWebCoatedSWOP);
And if your PDF file contains multiple pages you should use the MagickImageCollection instead and then call TransformColorSpace on each of the images in your collection. And you might want to change 'settings.Density' to a DPI of 300 to get an image with a better quality.

Viewing all articles
Browse latest Browse all 3693

Trending Articles