ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Load CMYK TIFF

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
hwook Posted - Oct 03 2011 : 04:36:30
How I can load CMYK TIFF file?
2   L A T E S T    R E P L I E S    (Newest First)
hwook Posted - Oct 04 2011 : 03:10:27
ImageEnView.IO.NativePixelFormat := true; //Yes, it's OK

Thanks fabrizio
fab Posted - Oct 03 2011 : 04:43:11
If the file is a standard TIFF-CMYK file, just execute:
ImageEnView.IO.LoadFromFile('input.tif');  // for a page at the time

or
ImageEnMView.MIO.LoadFromFile('input.tif'); // to load all pages


If you want to apply the ICC color profile (if exists) set:
iegEnableCMS := true;   // defined in imageenio unit


Finally if you want to leave the original CMYK pixels (instead of converting them to RGB 24) set:
ImageEnView.IO.NativePixelFormat := true;
ImageEnView.LegacyBitmap := false;

All properties must be set before loading.