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
 Quality of TIFF Picture

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
mivi71dk Posted - Sep 10 2014 : 02:46:23
Hi

I have made a program, where user can see a TIFF file.
But the quality of the TIFF pciture is not good.

The attached file shows the same TIFF file (and I cant attach a file. It keeps saying "Invalid String ")
The left is viewed by IrFanView.
The right is viewed by my program.

I suspect there must be a setting, which I can change to have it as clearly as the other?

Mivi
3   L A T E S T    R E P L I E S    (Newest First)
mivi71dk Posted - Sep 15 2014 : 04:15:00
Thank you all.

This was indeed what I was looking for :)

Mivi
xequte Posted - Sep 10 2014 : 13:15:04
Hi

Yes, ZoomFilter will make it look signficantly better. rfLanczos3 is probably the best looking, though is slower. You might also consider rfFastLinear.

You can also use DelayZoomFilter to reduce the impact of the smoothing filter.

Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
pierrotsc Posted - Sep 10 2014 : 07:17:43
you have to change the quality of the zoom:
if dxBarButton_BestQuality.Down then
Mainform.ImageEnVect.ZoomFilter := rfLanczos3
else
Mainform.ImageEnVect.ZoomFilter := rfNone;

The only thing i noticed is that it slows down the moving of layer considerably.

Pierre