Aurigma Forums
»
Graphics Mill
»
FAQ – Graphics Mill
»
HOWTO: Save spot color channel in TIFF image
Rank: Advanced Member
Groups: Guest
Joined: 8/3/2003(UTC) Posts: 1,070
Thanks: 1 times Was thanked: 12 time(s) in 12 post(s)
|
If you have experience with preparing designs for commercial printing in Photoshop, probably you are familiar with spot channels. Spot channels are used to print additional colors on print products and they are actually channels for additional inks. Suppose, you want to write an algorithm using Graphics Mill which stores a spot channel in a TIFF file. It can be easily done using, so called, extra channels. You just need to add a channel defining ink intensity for each pixel on the product. The only problem you encounter with is that there is no way to define what color the spot channel should be of. We dug a little bit into that and found out that color information is stored in Adobe image resource blocks in TIFF files. The color information of a spot channel is saved in a structure having the following format: Code:
struct DisplayInfo
{
public UInt16 colorSpace;
public Color color;
public UInt16 opacity;
public byte mode;
}
struct Color
{
public UInt16 r;
public UInt16 g;
public UInt16 b;
public UInt16 padding;
}
enum ColorSpace
{
RGB = 0,
HSB = 1,
CMYK = 2,
LAB = 7,
Grayscale = 8
}
This structure is serialized in binary format and added to Adobe image resource blocks by ID =1077. The attached sample application illustrates this concept. Edited by user Saturday, October 12, 2013 11:42:23 AM(UTC)
| Reason: Not specified File Attachment(s): Dmitry attached the following image(s): |
|
|
|
|
Aurigma Forums
»
Graphics Mill
»
FAQ – Graphics Mill
»
HOWTO: Save spot color channel in TIFF image
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.