Tagged Questions
0
votes
1answer
60 views
Image CMYK to RGB in PHP
I wonder how do I convert an image to CMYK to RGB format at the time of upload. I uploading the image to banner but when I open the image in her own browser gets a different color and blurry ..
0
votes
0answers
157 views
Converting .jpg from RGB to CMYK in Imagemagick resulted in blurry image
I have a .jpg file that was created by combining two images with GD. The image is saved out at 100 quality and looks very sharp. I am trying to use the following function to convert it to CMYK for ...
2
votes
1answer
529 views
How to convert CMYK/RGB TIFF to RGB JPEG using PHP IMagick
I have a PHP application which needs to deal with incoming TIFF files. I have neither control nor knowledge over the colorspaces of this TIFFs and the application should store all incoming images as ...
1
vote
0answers
210 views
Looking for graphics library like cairo but with CMYK support
I know Cairo can't produce CMYK PDF's - the topic comes up from time to time but still seems a way off yet (if at all).
My requirement is a graphics library (with PHP wrapper / class) that can ...
1
vote
1answer
485 views
PHP Imagick CMYK PDF convert to JPG
I use Imagick to convert pdf to JPG. The problem is that pdf is in CMYK format and the colors from resulting jpg is slightly different from those from pdf. I use the following code to achieve the ...
0
votes
2answers
2k views
cmyk to rgb using php
I'm using the following script to save images on a folder, but there is one image that shows this message "the image cannot be displayed because it contains errors".
I think the problem is something ...
1
vote
2answers
76 views
PDF creation through pstill
I am creating my pdf file through pstill command using an EPS file which look like
D:\\a\\GPStill\pstill.exe -w 4000 -h 4000 -d 1000 -a 4 -c -c -g -t -C -M epsrgb -Y -2 -P -W -R 0 -o ...
0
votes
1answer
2k views
RGB to CMYK conversion
Is there any way to convert HEX encoded RGB colors to CMYK in PHP? I have tried this PHP: HEX to CMYK but there is a bit difference in the colors, may be the above answer converts hex to RGB then ...
1
vote
1answer
387 views
Color is wrong when converting CMYK images to RGB using imagemagic
I had a bunch of images uploaded as cmyk and I needed to convert them to rgb.
I used the line
exec("convert -colorspace RGB " . $myfile . " " . $myfile);
But the color is way off (example, a ...
1
vote
1answer
202 views
PHP lib for print save PDFs?
I need to create print save PDFs with PHP, is there a library which supports embedded fonts and the CMYK color model?
3
votes
4answers
3k views
PHP IMagick RGB to CMYK inverts?
I'm trying to convert a RGB .gif to a CMYK .gif using IMagick PHP module.
I've wrote this piece of code
$i = new Imagick('mosaique.gif');
$i->setImageColorspace(Imagick::COLORSPACE_CMYK);
...