将图像转换为字节数组然后再返回

时间:2013-07-19 21:20:56

标签: c#

我意识到这个问题之前已经被问到并且有答案,但不是以这种特定的方式。我一直试图解决这个问题大约7个小时了。

我有一张图片,我将其转换为一个字节数组,以存储在Access数据库(.mdb)

[图片] - > [byte Array] - > [Access Database(field是一个OLE对象)] 我可以做到这一点很好,在这里完成:

public byte[] ImageToByte(Image img)
{
    Bitmap BmpImage = new Bitmap(img);
    BmpImage.Save(Application.StartupPath + @"\unmodified.png", System.Drawing.Imaging.ImageFormat.Png);
    MemoryStream mStream = new MemoryStream();
    PartPhoto.Image.Save(mStream, System.Drawing.Imaging.ImageFormat.Png);
    byte[] imgAsByte = mStream.ToArray();
    return imgAsByte;
}

然后我将所有数据存储在我的数据库中,如下所示:

    Part p = new Part();
    p.PartCode = IPC.Text; 
    p.PartName = IPN.Text;
    p.PartDesc = IDESC.Text;
 -->p.PartPhoto = ImageToByte(PartPhoto.Image);
    p.PartSize = size;
    p.PartWeight = weight;
    p.PartType = IPT.Text;
    p.LeadTime = ILT.Text;
    p.PartCost = ICOST.Text;
    p.PartQuantity = IQNT.Text;

    d.Insert(p);

Insert方法执行此操作:

 command.CommandText = "Insert INTO PartInfo (PartCode, PartName, PartDesc, PartPhoto, PartSize, PartWeight, PartType, LeadTime, PartCost, PartQuantity) VALUES('" + p.PartCode + "', '" + p.PartName + "', '" + p.PartDesc + "', '@Pic', '" + p.PartSize + "', '" + p.PartWeight + "', '" + p.PartType + "', '" + p.LeadTime + "', '" + p.PartCost + "', '" + p.PartQuantity + "')";
                    command.Parameters.Add("@Pic", p.PartPhoto);
command.CommandType = CommandType.Text;
connection.Open();
command.ExecuteNonQuery();

它在我的数据库中(在OLE对象字段中)显示为长二进制数据。 我从数据库中读到了像这样的DataGridView:

 String query = "SELECT * FROM PartInfo WHERE PartName CONTAINS " + "\"" + PN + "\"";
 connection.Open();
 da.SelectCommand = new OleDbCommand(query, connection);
 da.Fill(dt);
然后我打电话给:

PartGrid.DataSource = d.dt;
PartGrid.Refresh();

刷新网格。

这是我的问题。我无法从DataGridView读回字节数组。我尝试了几种不同的方法,总是得到同样的错误:“参数无效”

byte[] picBytes = (byte[])PartGrid.Rows[row].Cells[3].Value;
MemoryStream ms = new MemoryStream(picBytes);
Image partPic = Image.FromStream(ms); //ERROR: "Parameter is not valid"
Bitmap bmp = new Bitmap(partPic);
bmp.Save(Application.StartupPath + @"\test.png", System.Drawing.Imaging.ImageFormat.Png);
return partPic;

我将字节数组转换为图像,如下所示:

PartPhoto.Image = ImageFromByte(e.RowIndex); 

就像我说的那样,我已经被困在这几个小时了,而且它变得很烦人。

1 个答案:

答案 0 :(得分:0)

尝试使用System.IO.File.ReadAllBytes将图片转换为字节数组,然后System.IO.File.WriteAllBytes将其转换回来。