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
 TImageEnVect TIFF Rendering

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
Elemental Posted - Mar 28 2014 : 15:26:20
Attached is a graphic that shows page 1 of a black and white tiff rendered differently by three things: 1) a TImageEnMView, 2) a TImageEnVect, and 3) Windows Fax and Photo Viewer. Notice that 1) and 3) are a lot better rendered than 2). Why is that? I've tried setting BitmapResampleFilter and that doesn't seem to change anything.

Currently, I load the file with a simple call to ImageEnMView1.MIO.LoadFromFileTiff. I render the selected image in the MView with the following code, where Number is the idx of the image clicked on:


    ImageEnVect1.IEBitmap.Assign( ImageEnMView1.GetTIEBitmap( Number ) );
    ImageEnVect1.Update;
    ImageEnMView1.ReleaseBitmap( Number );




Any ideas on how the visible TIFF quality could be better with TImageEnVect?

"Roj"
1   L A T E S T    R E P L I E S    (Newest First)
Elemental Posted - Apr 21 2014 : 10:33:44
Found it! I had to set ZoomFilter, not BitmapResampleFilter!