CMYK refers to the standard colours and techniques involved with traditional four-colour printing: Cyan, Magenta, and Yellow, and blacK.
5
votes
5answers
8k views
Convert RGB color to CMYK?
I'm looking for an algorithm to convert an RGB color to CMYK. Photoshop is performing the conversion below:
R = 220
G = 233
B = 174
C = 15
M = 0
Y = 40
K = 0
5
votes
5answers
9k views
RGB to CMYK and back algorithm
I am trying to implement a solution for calculating the conversion between RGB and CMYK and vice versa. Here is what I have so far:
public static int[] rgbToCmyk(int red, int green, int blue)
{
...
13
votes
4answers
4k views
C# convert RGB value to CMYK using an ICC profile?
this question seems posted at many places over the interwebs and SO, but I could not find a satisfactory answer :(
How can I convert a RGB value to a CMYK value using an ICC profile?
The closest ...
2
votes
2answers
2k views
Script (or some other means) to convert RGB to CMYK in PDF?
Is it possible to write a script for Adobe Illustrator or some other tool that will read the contents of a number of PDF files and convert all the RGB colours to CMYK?
If so, could somebody please ...
11
votes
5answers
6k views
How to convert from CMYK to RGB in Java correctly?
My Java code to convert a CMYK jpeg to RGB results in the output image being far too light - see code below. Can anyone suggest the correct way to do the conversion?
The following code requires Java ...
7
votes
3answers
7k views
Converting PDF to CMYK (with identify recognizing CMYK)
I am having much trouble to get ImageMagick's identify to, well, identify a PDF as CMYK.
Essentially, let's say I'm building this file, test.tex, with pdflatex:
...
11
votes
6answers
2k views
How to identify CMYK images in ASP.NET using C#
Does anybody know how to properly identify CMYK images in ASP.NET using C#? When I check the Flags attribute of a Bitmap instance, I get incorrect results.
I have created three images to test this: ...
6
votes
3answers
1k views
Using CMYK colours in WPF/XAML
Is there any way to specify CMYK colours directly in a XAML document?
prefixing them with # character will create RGB colours, but how to specify a CMYK colour?
Some notes:
The question is NOT ...
2
votes
4answers
2k views
Java CMYK to RGB with profile. Output is too dark
Similar question has been asked many times.
But I still don't get why I get too dark output after I converted a picture with ICC_Profile.
I've tried many profiles: from Adobe site, and from the ...
10
votes
6answers
5k views
IE6 - can't load a normal JPG
Try loading this normal .jpg file in Internet Explorer 6.0. I get an error saying the picture won't load. Try it in any other browser and it works fine. What's wrong? The .jpg file is just a normal ...
4
votes
0answers
716 views
RMagick: Convert CMYK EPS to RGB PNG maintaining transparent background
I've spent a long time trying to go from a CMYK EPS to a RGB PNG using RMagick and Rails. Hopefully this will be of use to someone:
def convert_image_from_cmyk_to_rgb( image )
#puts image.alpha?
...
2
votes
3answers
1k views
CMYK 2 RGB Problem
I have a problem with converting a CMYK Color to RGB.
In the internet there is many formulas to convert it but for example when I convert CMYK (0,100,100,0) to RGB, it get value (255 0 0) but in ...
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 ...
0
votes
3answers
3k views
How to convert CMYK to RGB programmatically in indesign
I have a CMYK colorspace in indesign, i want to convert that as RGB color space, I got some codes, but I am getting incorrect data.
Some of the codes which I tried are given below
double cyan = ...
17
votes
7answers
21k views
Using a CMYK PSD without Photoshop
I have run into a common, yet difficult problem. I do not use Photoshop for image manipulation. Since all my work is web-based, GIMP does what I need in 99% of the situations. The problem is that I ...
17
votes
3answers
2k views
How to identify CMYK images using C#
Does anybody know how to properly identify CMYK images using C#? I found how to do it using ImageMagick, but I need a .NET solution. I found 3 code snippets online, only one works in Windows 7, but ...
3
votes
3answers
4k views
Pure Java alternative to JAI ImageIO for detecting CMYK images
first I'd like to explain the situation/requirements that lead to the question:
In our web application we can't support CMYK images (JPEG) since IE 8 and below can't display them.
Thus we need to ...
5
votes
2answers
1k views
In Android how to decode a jpeg in cmyk color format?
I'm trying to decode a jpeg that is in CMYK color format. BitmapFactory returns null. I googled around but with no luck. Is it possibile Android team did not the right job supporting all kind of color ...
5
votes
2answers
508 views
Is there any client-side technology able to convert sRGB to CMYK through an ICC color profile?
Is there any technology available in a browser (client-side) able to convert sRGB colors to CMYK and vice versa using a specified ICC color profile?
I'm currently using a hidden Java applet for the ...
2
votes
1answer
619 views
The are any CMYK graphics library?
I'm looking for graphics library with CMYK support(JPG or TIF). I have to read one big image file and one small, then write second on first. Output have to be also CMYK(without any CMYK->RGB ...
1
vote
3answers
2k views
Converting (any) PDF to black (K)-only CMYK
This is related to:
Converting PDF to CMYK (with identify recognizing CMYK).
Script (or some other means) to convert RGB to CMYK in PDF?
... but a bit more specific here: say I have an RGB PDF, ...
1
vote
3answers
1k views
CMYK to RGB formula of Photoshop
Is there a place where I can get the formula which photoshop uses to convert rgb to cmyk?
I know there are formulas on the web, but photoshop does not use this formula. It converts the collors ...
0
votes
2answers
3k views
How to convert PDF from CMYK to RGB, for displaying on iPad?
According to this question:
Displaying PDF documents on iPad - Color Problems
some PDFs don't display right on iOS devices due to colors not being in RGB. It's also mentioned that converting PDFs ...
0
votes
1answer
155 views
DirectCast not working
'ofd is open file dialog
Dim img As Bitmap
Dim iscmyk As Boolean
Dim i As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
...
0
votes
3answers
1k views
Convert TIFF to PostScript
I'm writing .net code (Windows Forms Application) which reads a TIFF image (CMYK) and sends it to printer (using WritePrinter). Before I send it, I need to convert the TIFF image to PostScript. Could ...