Пример #1
0
        public override Bitmap ToBitmap()
        {
            var bmp = new Bitmap(cols, rows, PixelFormat.Format24bppRgb);

            ImgMashal.SetDataToBmp(bmp, data);

            return(bmp);
        }
Пример #2
0
        public override Bitmap ToBitmap()
        {
            var rgbLength = 3 * GetSize();
            var rgbData   = new byte[rgbLength];

            DataGrayscaleToRgb(data, rgbData);

            var bmp = new Bitmap(cols, rows, PixelFormat.Format24bppRgb);

            ImgMashal.SetDataToBmp(bmp, rgbData);

            return(bmp);
        }