![]() |
|
ReaderWmf and Clipboard - Printable Version +- AB4D Forum (https://forum.ab4d.com) +-- Forum: Products Forums (https://forum.ab4d.com/forumdisplay.php?fid=4) +--- Forum: Paste2Xaml and Ab2d.ReaderWmf (https://forum.ab4d.com/forumdisplay.php?fid=7) +--- Thread: ReaderWmf and Clipboard (/showthread.php?tid=43) |
ReaderWmf and Clipboard - abody - 06-28-2010 Hi, I'm trying to get a metafile from clipboard with the ReaderWmf component. But I don't know how I can do that. I can get a System.Window.Control.Image with this line: Code: Image clipboardImage = Clipboard.GetData(DataFormats.MetafilePicture) as Image;Anyone have an idea. Antony. RE: ReaderWmf and Clipboard - abenedik - 06-29-2010 Hi, Currently this is quite complicated. I am already preparing a new version where it will be very easy to read metafile from Clipboard and convert it into WPF objects. With the current version you can use GetFromHemf or GetGeometryFromHemf methods on ReaderWmf to read metafile from clipboard. For example: Viewbox pastedObjects = Ab2d.ReaderWmf.Instance.GetFromHemf(hemf). The tricky part is to get hemf - the handle to a clipboard object (as IntPtr). You can get the handle with COM interop. - Use GetClipboardData function (defined in user32.dll). Before calling GetClipboardData, you should check if metafile is stored on the clipboard with calling IsClipboardFormatAvailable with CF_ENHMETAFILE parameter and if metafile exist open the clipboard before calling GetClipboardData (don't forget to close the clipboard afterward). Check the web for samples on using the functions. Or you can wait a little for the new version of ReaderWmf - it will be available in a week or two. RE: ReaderWmf and Clipboard - abody - 06-29-2010 Hi, Thanks for your answer. I have find my way...... Here is the solution like as you sayed. Code: ReaderWmf metafileReader = new ReaderWmf();Bye. RE: ReaderWmf and Clipboard - abenedik - 06-29-2010 Great. Thank you for sharing the code. |