示例#1
0
 public static void Load()
 {
     LoadThumbnailDelegate updateImage = new LoadThumbnailDelegate(LoadImageQueue);
     updateImage.BeginInvoke(null, null);
 }
示例#2
0
 internal Error LoadThumbnail(string filename, int width, int height, ref IntPtr bitmap, ref GflLoadParams prms, IntPtr info)
 {
     this.ThrowIfDisposed();
     if(this._LoadThumbnailDelegate == null){
         this._LoadThumbnailDelegate = this.LoadMethod<LoadThumbnailDelegate>("gflLoadThumbnail");
     }
     return this._LoadThumbnailDelegate(filename, width, height, ref bitmap, ref prms, info);
 }