CMYK refers to the standard colours and techniques involved with traditional four-colour printing: Cyan, Magenta, and Yellow, and blacK.
0
votes
0answers
26 views
Check if uploaded image is CMYK in ActionScript 3.0
Is there any way to figure this out which user uploaded image in our flex project is RGB or CMYK?
Something like using byteArray and check the specific place of CMYK/RGB header on it...
5
votes
4answers
1k views
how can I convert an RGB image to CMYK and vice versa in Java?
our web app let users download dynamically generated images in different formats (bmp, png and jpeg). Some of our users download the images for printing, thus we would like to allow them to choose ...
0
votes
2answers
232 views
UIColor CMYK and Lab Values?
I have been trawling the web for a solution but have managed to find one which works yet.
Simple question, more than likely complex answer:
How can I get CMYK and Lab values from a UIColor object ...
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 ...
1
vote
1answer
120 views
How to get and set a pixel's color in the CMYK format?
Can I set a pixel's color in a Bitmap image using the CMYK format? Or must I convert the color to RGB values?
2
votes
1answer
130 views
eps cmyk color matplotlib output
I need to output my plots in EPS with the CMYK color space. Unfortunately this particular format is requested by the journal I am submitting my work to!
This discussion was the only one I could find ...
1
vote
1answer
56 views
How can I open a CMYK tif image and read the pixels CMYK values?
I have search around and can see many questions on converting values but I cant find a library that gives me the CMYK values, I can only see examples that get the RGB values?
If there a library that ...
1
vote
2answers
87 views
How to Limit the color channels in a PDF file
I have created a WPF system, it uses CMYK colors and works only with two channels: black and magenta. The problem I have is when I print the output to Adobe Acrobat Printer, the resulting PDF file has ...
0
votes
1answer
54 views
turn string of hexadecimal numbers into cmyk reference?
i have a huge file of hexadecimal numbers, from a wav file I opened in a hex editor. Is there a code (i'm using processing) to turn a string of these numbers into a cmyk reference?
My tutor mentioned ...
1
vote
4answers
781 views
How can i convert an uploaded image of RGB format to CMYK format in .Net?
I have a requirement for converting and saving an image in CMYK format. When i have uploaded an image of RGB format, then i need to convert it to CMYK. Is it possible in .Net? Thanks
1
vote
2answers
313 views
Convert CMYK PDF into spot colors (colours)
Is it possible to pre-process (in batch) PDFs that are in CMYK format to separate out into spot colours?
I have a collection of PDFs that are in CMYK but I require them to be in a 2 spot colour ...
-1
votes
1answer
26 views
.NET API pdf with cmyk images [closed]
Does anybody know for .net api which can handle PDF with cmyk images inside. PDF copy, combine etc..
It doesn't matter if it is open source or commercial solution.
And if it supports PDF layers will ...
0
votes
1answer
371 views
pdfViewer don't load the images in the pdf
My application isn't loading the images inside the pdf and is getting an error everytime I load a page in the pdf that contains images.
This is the LogCat:
06-29 11:07:29.900: ...
0
votes
1answer
565 views
Convert Image byte[] from CMYK to RGB?
I need to convert bytes of an CYMK image to bytes for RGB image.
I think it's possible to skip the bytes of the header and convert others bytes in RGB and then change the header bytes for RGB format.
...
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 ...
2
votes
2answers
587 views
Android CMYK mode
I have a Bitmap in CMYK mode, which doesn't show correctly, and at some point not at all, on Android. Googling didn't return many answers, so I have to ask here how do I handle CMYK mode images?
...
0
votes
2answers
157 views
RGB to CMY color model using c++
This is the formula that we use to convert RGB to respective CMY format:
C = 1 - ( R / 255 )
M = 1 - ( G / 255 )
Y = 1 - ( B / 255 )
I am trying to display the CMY image after applying this formula ...
0
votes
1answer
61 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
2answers
53 views
Java print in CMYK
I want to paint some Graphics2D objects, using java printing mechanism. So i have to define a subclass of Printable.
public class PrintCMYK() implements Printable {
public int print(Graphics g, ...
0
votes
0answers
60 views
java wat Jmagick rgb to cmyk
At the company's needs, need java awt class libraries Graphics2D drawing, printing pictures and generates cmyk mode, but Graphics2D can not generate the the cmyk mode of pictures, and can only be ...
1
vote
2answers
545 views
CMYK values as background Color
I have to set backgroundColor of div using RGB values . Im able to get this way.
<div style="width: 100px; height: 100px; background-color: rgb(255,0,0)">
</div>
Now, Since I also have ...
1
vote
1answer
406 views
Convert RGB PDF to CMYK keep 100% K (black) AND 100% M(Magenta) on linux
This is related to:
Converting (any) PDF to black (K)-only CMYK
Hi
first please sorry for my english.
This related link have 50% of the solution to my problem.
The only thing which is left is I ...
0
votes
0answers
161 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
108 views
Grayscale CMYK pixel
I need to convert a CMYK image to grayscaled CMYK image. At first i thought i can just use the same method as for RGB -> grayscale conversion, like (R + G + B) / 3 or max(r, g, b) / 2 + min(r, g, b). ...
4
votes
1answer
298 views
Color profiles conversion
I have a project on color profile conversion in C++, where the idea is to use CIELAB as transition between RGB and all others (CMY; CMYK; HSV; HSL;...).But I have one big big problem. I have searched ...
0
votes
1answer
304 views
c# Color Conversion CMYK to Cielab or RGB to Cielab using ICC Profile
I want to use the .icc Profile "ISOnewspaper26v4.icc" in C# !
But I have a problem now.. I don't know how to convert CMYK colors to Lab values or RGB to Lab values by using this ICC Profile ??!! How I ...
0
votes
0answers
39 views
CMYK Barcodes with zxing
I want to print a bunch of Barcodes in a printery and they told me, that my Barcodes (Code128 and QR-Code) are not in the correct color space. They are in RGB, but I need CMYK.
What can I do to ...
0
votes
1answer
140 views
.Net based Vector CMYK Graphics library
We have an application that facilitates a process and the end result is printed pages of advertisements. The current implementation uses GDI+ commands in c# to draw the ads in a design environment, ...
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
1k views
How to use use cmyk color codes in android?
I have an doubt, I don't know how to use cmyk colors in android. If any one knows please help me. I am waiting for your valuable replies.
2
votes
1answer
532 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
287 views
Create video filter using GPUImage framework for blw file exported from Photoshop
My task on project is to create GPUImage live video and image filter.
I have Black and white file exported from Photoshop.
I can read values from that file
But can not find appropriate filter to ...
0
votes
0answers
125 views
List of print safe colors - RGB hex colors safely translated to CMYK?
I'm looking for a list of colors that I can safely use as RGB hex in HTML/CSS to be sure that the colors don't ge distortedt. Is such a list even possible? The web page where the colors would be used ...
1
vote
0answers
213 views
CMYK to RGB conversion in WinRT
In Windows Form and WPF applications I used mscms.dll library to access the color profiles installed to the system for converting CMYK colors to RGB colors, with reference to the link ( C# convert RGB ...
2
votes
1answer
494 views
Do e-ink / e-paper screens work in the RGB, CMYK, or some other colour space?
Do e-ink / e-paper screens work in the RGB, CMYK, or some other colour space? Will we need to support native CMYK displays in the near future? I'm designing a data structure with colour information ...
0
votes
2answers
224 views
is RGB to CMYK conversion 1:1?
If I do not filter through an ICC profile, is CMYK to RGB conversion 1:1?
Looks like it when using color pickers like this one.
2
votes
1answer
206 views
Javascript feature detect CMYK images
It is well known that ie8 doesn't support cmyk jpg images, it just doesn't render them at all :-(
here is one post about it http://www.plaveb.com/blog/cmyk-images-not-displayed-in-internet-explorer, ...
2
votes
1answer
149 views
Python.exe crashes when saving CMYK tif image with PIL
I'm having troubles only with CMYK tif images in PIL. The thing is that everything seems to be going fine, I can load the file, save it, but when I crop it and try to save it python.exe just hangs. ...
1
vote
1answer
421 views
Rendering options in ABCpdf not being saved correctly
I've seen some ABCpdf questions on this site but not this one yet. I am working on a project that requires PDF output with some rather specific options. ABCpdf seems to be able to offer this ...
1
vote
1answer
106 views
Convert Transparent PDF-Files (PDF/X-4) to either Image or PDF/X-1
Currently we are using Ghostscript to convert CMYK-PDFs to RGB-Jpegs. Works (more or less) flawless. But during the last few weeks an increasing number of PDF-files with transparency creep up that ...
1
vote
0answers
136 views
Reading CMYK file from ALAsset
I would like to read CMYK image from iOS Photo Library.
e.g. CMYK file sample
Open this file in Safari and hold down and save to Camera Roll.
Then I use ALAsset Library to display in UIImageView
...
2
votes
1answer
199 views
Imagemagick Colorspace Black/White to CMYK
I have to batch convert a whole directory from colorspace Black/White (shown in XNView) to CMYK for print..
I tried like this (worked well for "normal" graphics..)
mogrify.exe -path [...]\Logos ...
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
...
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
0
votes
0answers
188 views
Saving TIFF with CMYK encoding using Sanselan
I am currently trying to save a TIFF image using Sanselan in Java with CMYK color encoding and it does not appear to be working. I set the EXIF data for the image by using the photometric ...
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:
...
2
votes
0answers
238 views
Converting RGB PDF to CMYK PDF
I'm looking for a way to convert a PDF with RGB colors to one with CMYK colors. I have tried different programs like Ghostscript and PStill but none of them seem to do the right job. Does somebody ...
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 ...
1
vote
1answer
65 views
cmyk color specification in SVG 1.2
According to the SVG 1.2 standard, support is now offered for icc-color specfication (according to this link: W3.org spec for SVG 1.2
I tried it with the following... this is the entire file, two ...
0
votes
0answers
32 views
IE7 some images disappear
Some of my images are disappearing completely in IE7.
The link is: Flockr
I have checked they are RGB jpgs and not cmyk.
I have included a / at the end of the img src.
The paths are definitely ...







