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
 SaveToFileTiff SelectedImage

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
izaque Posted - Apr 23 2012 : 07:54:15
Hello, I do not know if it's a bug, but when I use "ImageEnMView1.MIO.SaveToFileTIFF ('C: \ Tmp \ img00001.tiff', true);" is not saving the image correctly. The size is 0 KB. The version is ImageEn 4.1.0

ImageEnMView1.SelectedImage: = 0;
ImageEnMView1.MIO.SaveToFileTIFF ('C: \ Tmp \ img00001.tiff', true);
5   L A T E S T    R E P L I E S    (Newest First)
izaque Posted - Apr 23 2012 : 11:17:51
Thank you!
fab Posted - Apr 23 2012 : 11:15:16
quote:
The "ImageEnView1.TImageEnProc.SeparateObjects" work in resolution images, 300 dpi? The "SeparateObjects" is magnificent!


SeparateObjects is not dependent by image resolution, so it should work. Of course it may require more time processing large images.
izaque Posted - Apr 23 2012 : 10:34:26
Thanks Fabrizio. It worked wonderfully!

" A reply could require up to 48 hours to be processed. "

I'm sorry, I thought the topic had already been closed, so I said "up".
The topic was not in the "Active Topics".

One more question:
The "ImageEnView1.TImageEnProc.SeparateObjects" work in resolution images, 300 dpi? The "SeparateObjects" is magnificent!

fab Posted - Apr 23 2012 : 09:55:25
Hello,
the right code is:

  ImageEnMView1.EnableMultiSelect := true;  // if not already set at design-time
  ImageEnMView1.MultiSelecting := true;
  ImageEnMView1.SelectedImage := 0;
  ImageEnMView1.MultiSelecting := false;
  ImageEnMView1.MIO.SaveToFileTIFF('test.tif', true);


Anyway, if you want to save a single page just execute:

ImageEnMView1.GetImageToFile(0, 'test.tif');

quote:
Up?


A reply could require up to 48 hours to be processed.
izaque Posted - Apr 23 2012 : 09:47:37
Up?