有没有办法在不复制数据的情况下从该pixels创建一个bitmap对象?我有一个小的图形库,当我需要在WinForms窗口上显示图像时,我只需将数据复制到bitmap对象,然后使用draw方法。GCHandle.Alloc(pixels, GCHandleType.Pinned);
// create a new bitmapBitmap bmp = new <em
如何从Graphics对象创建Bitmap对象?我想从我的Graphics对象中读取像素。例如,System.Drawing.BitMap.GetPixel()。//// System.Drawing.GraphicsBitmap b = new Bitmap(width, height, graphics);
我有一个脚本,它根据颜色对象的List (它们是从一个名为Grasshopper的图形“编码”软件中的渐变分量派生的RGB值)返回热图,如下所示:下面是我的返回Bitmap的C#热图绘制方法的摘录Bitmap map = new Bitmap(U, V, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
int x = 0;_heatmap;,我使用DrawHeatmap()方法在其中存储Bitmap对象。<e