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
 Scanning correct size.

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
mvbobj Posted - Jun 18 2015 : 13:36:07
Hi,

I am scanning with ImageEnMView and the images I scan in all have 1/8 inch trimmed off each edge. Why is that? Did I set something wrong? I scan in 4 inch by 6 inch and I get 3.75 x 5.75.

ImageEnMView1.MIO.TWainParams.AcquireFrameEnabled := True;
ImageEnMView1.MIO.TWainParams.AcquireFrameTop := 0.0;
ImageEnMView1.MIO.TWainParams.AcquireFrameBottom := 6.0;
ImageEnMView1.MIO.TWainParams.AcquireFrameLeft := 0.0;
ImageEnMView1.MIO.TWainParams.AcquireFrameRight := 4.0;
ImageEnMView1.MIO.Acquire(ieaTWain);

Flatbed or ADF makes no difference, 1x3 or 8.5x11 each get 1/8th inch off each edge - not proportional - exactly 1/8 inch.

What's happening here? Is there a margin or border I have set somehow?

Thanks.
Bob Jackson
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Jun 24 2015 : 15:25:32
Hi

I expect it is some weirdness of that scanner. Have you tested with a different scanner?

Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
mvbobj Posted - Jun 18 2015 : 14:41:53
I just turned off AcquireEnabled and set

ImageEnMView1.MIO.TWainParams.StandardSize.CurrentValue := IETW_USLETTER;

and the result is... 8.27 x 10.77 - typically I'm seeing a difference of 0.23 or 0.24 on both dimensions. (If the 10.77 were 11.77, I might think it was trying to throw A4 at me.)

Do I really need to just add 0.235 to my desired height and width?!!??!!?!

While it seems to work, that scarcely seems like the correct answer.
mvbobj Posted - Jun 18 2015 : 14:09:29
I saw a forum entry with something similar but opposite:

http://www.imageen.com/ieforum/topic.asp?TOPIC_ID=109&SearchTerms=AcquireFrameEnabled

At the bottom, the author states that he sets the scanner options for the acquire size with (0, 0, 11.69, 8.26) and the resulting image is sized 850x1150 in other words about 1/4 inch MORE on height and width!

Any way to resolve this?