-2

i need to scan part of page by ImageEn in delphi for faster scanning like window7 paint scanner dialog!

i want to open the twain dialog like paint

enter image description here

  • what is your question? you want to open the twain dialog like paint does? – whosrdaddy Jan 01 '18 at 15:41
  • What *exactly* are you having problems with in the process of scanning a part of a page by *ImageEn* in Delphi? What have you tried (show your code) and how did it work or did it not work? Please read [**Asking**](http://stackoverflow.com/help/asking) to learn what you can ask about and how to present your question. – Tom Brunberg Jan 01 '18 at 15:56
  • 1
    Contact the vendor – Dave Nottage Jan 01 '18 at 23:25
  • yes i want to open the twain dialog like paint – amini gazar Jan 02 '18 at 05:36

1 Answers1

0

Just need to select other scanner by "AcquireSource"

if ImageEnView.io.SelectAcquireSource then
begin
  ImageEnView.io.Acquire;
  ImageEnView.Stretch;
end;

enter image description here