T O P I C R E V I E W |
TiagoMelo |
Posted - Feb 19 2015 : 15:00:52 hello how can I save a imageenmview with multiple tif images to a single bmp file? |
5 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Feb 20 2015 : 21:55:41 Sure, the process woudl be something like:
1. Get the output size
Iterate through all the items in the TImageEnMView, adding up the ImageHeight values and getting the max ImageWidth value
2. Create a destination TIEBitmap of Max ImageWidth x Total of ImageHeights
3. Create a temp TIEBitmap
4. Iterate through all the items in the TImageEnMView, using CopyToIEBitmap to copy to your temp TIEBitmap:
http://www.imageen.com/help/TImageEnMView.CopyToIEBitmap.html
Then use DrawToTIEBitmap to output our temp TIEBitmap to our destination TIEBitmap:
http://www.imageen.com/help/TIEBitmap.DrawToTIEBitmap.html
5. Save your destination TIEBitmap
Nigel Xequte Software www.xequte.com nigel@xequte.com |
TiagoMelo |
Posted - Feb 20 2015 : 05:24:35 exactly , is this possible ? |
xequte |
Posted - Feb 20 2015 : 01:40:54 So, for example, if you have ten images in a TImageEnMView, then it will create a BMP with a single image containing all your ten images? Is that what you mean?
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
TiagoMelo |
Posted - Feb 19 2015 : 18:51:38 hello , I need all the images on imaenmview in a single image file bmp , how could I achieve this? I managed to export all to pdf . I would have some form of import that pdf and bmp generate my starting it using imageen ? |
xequte |
Posted - Feb 19 2015 : 15:12:22 Hi
BMP format only supports one frame, so do you want to save each TIFF frame to a separate BMP file?
Nigel Xequte Software www.xequte.com nigel@xequte.com
|