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
 Creating a TIFF file without AttachedBitmap

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
hckr Posted - Aug 03 2015 : 03:35:11
I would like to create a TIFF file whose params are defined but without an "AttachedBitmap" using ImageEn. I have tried to assign AttachedBitmap to nil, however, it caused an error and could not create the file correctly.

Is it possible with ImageEn to create a TIFF file without an AttachedBitmap?




Thanks in advance.
hckr
4   L A T E S T    R E P L I E S    (Newest First)
hckr Posted - Aug 06 2015 : 13:09:44
That solves my problem.
Thanks.
hckr
xequte Posted - Aug 05 2015 : 18:37:03
Hi

So you want to create a blank TIFF with ImageEn? Even if an image is blank you will still need a bitmap to handle it. You can do it non-visually:

bmp := TIEBitmap.Create(1000, 1000, ie24RGB);
bmp.write( 'D:\blanktiff.tiff' );
bmp.free;



Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
hckr Posted - Aug 04 2015 : 03:54:14
Hi

I would like to create a TIFF file with a big size on disk without filling it using ImageEn. Then I will fill the TIFF file using another software. That is my intention.

hckr
xequte Posted - Aug 03 2015 : 19:59:04
Hi

I think you are misunderstaning the purpose of AttachedBitmap (or I am misunderstanding your intentions). For a TImageEnView the AttachedBitmap point to the bitmap object that holds the TIFF image itself.

Are you attempting only to edit the Params of a TIFF without changing its image content?



Nigel
Xequte Software
www.xequte.com
nigel@xequte.com