Esempio n. 1
0
 public unsafe System.Drawing.Bitmap GetBitmap() {
     fixed(byte *img = &this.imageData)
     return(EBDT.GetBitAlignedImage(this.bigMetrics.width, this.bigMetrics.height, img));
 }
Esempio n. 2
0
 public unsafe System.Drawing.Bitmap GetBitmap(int width, int height) {
     fixed(byte *img = &this.imageData)
     return(EBDT.GetBitAlignedImage(width, height, img));
 }