Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Untitled

By: a guest on Jun 20th, 2009  |  syntax: C#  |  size: 0.55 KB  |  hits: 229  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. namespace PasteBin
  2. {
  3.     public class ImageConverter : System.Windows.Forms.AxHost
  4.     {
  5.         public ImageConverter()
  6.             : base("59EE46BA-677D-4d20-BF10-8D8067CB8B33")
  7.         {
  8.         }
  9.  
  10.         public static stdole.IPictureDisp ImageToIpicture(System.Drawing.Image image)
  11.         {
  12.             return (stdole.IPictureDisp)GetIPictureDispFromPicture(image);
  13.         }
  14.  
  15.         public static System.Drawing.Image IpictureToImage(stdole.StdPicture picture)
  16.         {
  17.             return GetPictureFromIPicture(picture);
  18.         }
  19.     }
  20. }