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
 Metafile LoadFromStreamFormat

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
Harald Posted - Jan 24 2013 : 02:00:14
Hallo.
I have problems with LoadFromStreamFormat and wmf metafile.
MemoryStream contains a wmf file from QuickReport.

Works fine:
MemoryStream.SaveToFile('C:\Temp\test.wmf');
ImageEnView.IO.LoadFromFile('C:\Temp\test.wmf');


Empty ImageEnView:
MemoryStream.Position := 0;
ImageEnView.IO.LoadFromStreamFormat(MemoryStream, ioWMF);


XE2 with ImageEn 4.1.4
Any idea? Thanks, Harald

Document Management http://www.officemanager.de
1   L A T E S T    R E P L I E S    (Newest First)
fab Posted - Jan 25 2013 : 00:46:47
Hello,
please specify ioUnknown in LoadFromStreamFormat...

ImageEnView.IO.LoadFromStreamFormat(MemoryStream, ioUnknown);

...or load using LoadFromStream:

ImageEnView.IO.LoadFromStream(MemoryStream);

Next version will allow also to specify ioWMF in LoadFromStreamFormat as you have done.