Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace PasteBin
- {
- public class ImageConverter : System.Windows.Forms.AxHost
- {
- public ImageConverter()
- : base("59EE46BA-677D-4d20-BF10-8D8067CB8B33")
- {
- }
- public static stdole.IPictureDisp ImageToIpicture(System.Drawing.Image image)
- {
- return (stdole.IPictureDisp)GetIPictureDispFromPicture(image);
- }
- public static System.Drawing.Image IpictureToImage(stdole.StdPicture picture)
- {
- return GetPictureFromIPicture(picture);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement