从数组创建位图有几个问题。我有一个摄像头,从中我得到了ushort格式的灰度值。但是如何从这个值创建位图?只有:
System.Drawing.Bitmap checks = new System.Drawing.Bitmap(10, 10);
.
.
checks.Save(@"C:\test.bmp", ImageFormat.Bmp);
不起作用:(。我得到一个图像,可以用窗口工具打开它,但是当我用另一个图形库打开文件时,我会遇到很多错误。现在有人如何创建一个正确的bmp文件有标题等吗?有没有人有一些代码示例?这对大多数人都有帮助。
感谢
答案 0 :(得分:2)
您应该创建一个具有正确尺寸(宽度,高度)的Bitmap
,并使用LockBits
来获取您应该写入的内存句柄。如果您的数据位于.NET支持的PixelFormat中,则可以将其传递给LockBits并简单地复制数据。如果没有,您可能需要手动进行一些数据转换。
这一切都归结为您接收数据样本的格式,但上述说明概述了生成图像所需的步骤。
更新:由于您的数据是16位灰度,因此您可以直接使用PixelFormat
PixelFormat.16bppGrayScale
。
答案 1 :(得分:0)
public class(path,wid,height,boolean)
{
System.Drawing.Image myThumbnail150;
System.Drawing.Image.GetThumbnailImageAbort myCallback = new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback);
System.Drawing.Image imagesize = System.Drawing.Image.FromFile(pic.FilePath);
using (Bitmap bitmapNew = new Bitmap(imagesize))
{
double maxWidth = Convert.ToDouble(ConfigurationSettings.AppSettings["ImageWidth"]);
double maxHeight = Convert.ToDouble(ConfigurationSettings.AppSettings["ImageHeight"]);
int w = imagesize.Width;
int h = imagesize.Height;
// Longest and shortest dimension
int longestDimension = (w > h) ? w : h;
int shortestDimension = (w < h) ? w : h;
// propotionality
float factor = ((float)longestDimension) / shortestDimension;
// default width is greater than height
double newWidth = maxWidth;
double newHeight = maxWidth / factor;
// if height greater than width recalculate
if (w < h)
{
newWidth = maxHeight / factor;
newHeight = maxHeight;
}
myThumbnail150 = bitmapNew.GetThumbnailImage((int)newWidth, (int)newHeight, myCallback, IntPtr.Zero);
string name = pic.Name.Replace(Path.GetExtension(pic.Name), ".Bmp");
//Create a new directory name ThumbnailImage
//Save image in TumbnailImage folder
myThumbnail150.Save(yourpath+ name, System.Drawing.Imaging.ImageFormat.Bmp);
bitmapNew.Dispose();
}