Transform PDF to PNG (CMYK to RGB)
Posted: 2018-02-21T05:02:42-07:00
Hi everyone !
I search on all the web with no results for this question.
I use imagick for transform the first index of a PDF to PNG.
This work very fine but there is difference (colors) between the first index and the PNG (see pics for example)
This image is the first index of the PDF (xxx.pdf)
This image is the png generate by the first index (xxx.png)
As you can see, the color is not the same...
This is my code :
(I already tried setImageColorSpace with no good result..)
Any ideas ?
Thanks !
I search on all the web with no results for this question.
I use imagick for transform the first index of a PDF to PNG.
This work very fine but there is difference (colors) between the first index and the PNG (see pics for example)
This image is the first index of the PDF (xxx.pdf)
This image is the png generate by the first index (xxx.png)
As you can see, the color is not the same...
This is my code :
Code: Select all
$im1 = new imagick($url);
$im1->setIteratorIndex(0);
$im1->setImageFormat('jpg');
// $im1->setImageColorSpace(Imagick::COLORSPACE_SRGB);
$im1->writeImage(ABSPATH.'medias/miniature-pdf/miniature-'.strtolower($filename).'-full.png');
Any ideas ?
Thanks !