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