Tagged Questions
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
0answers
50 views
Convert RGB value to CMYK using an ICC profile? c# [duplicate]
Possible Duplicate:
C# convert RGB value to CMYK using an ICC profile?
Well.. I've been working on this for some time and discovered many things about this world, but could not perform one ...
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 ...
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 ...
4
votes
3answers
1k views
WPF BitmapImage and TIFF with CMYK + Alpha
I am using this code snippet to load various image files:
BitmapImage bitmap = new BitmapImage ();
bitmap.BeginInit ();
bitmap.UriSource = new System.Uri (path);
bitmap.CreateOptions = ...