在C#中如何将byte[] 类型转换为图片类型

 我来答
Ben
2015-07-04 · 知道合伙人软件行家
Ben
知道合伙人软件行家
采纳数:860 获赞数:2875
认真回答者.

向TA提问 私信TA
展开全部
在C#中

图片到byte[]再到base64string的转换:

Bitmap bmp = new Bitmap(filepath);
MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
byte[] arr = new byte[ms.Length];
ms.Position = 0;
ms.Read(arr, 0, (int)ms.Length);
ms.Close();
string pic = Convert.ToBase64String(arr);

base64string到byte[]再到图片的转换:

byte[] imageBytes = Convert.FromBase64String(pic);
//读入MemoryStream对象
MemoryStream memoryStream = new MemoryStream(imageBytes, 0, imageBytes.Length);
memoryStream.Write(imageBytes, 0, imageBytes.Length);
//转成图片
Image image = Image.FromStream(memoryStream);

现在的数据库开发中:图片的存放方式一般有CLOB:存放base64string

BLOB:存放byte[]

一般推荐使用byte[]。因为图片可以直接转换为byte[]存放到数据库中

若使用base64string 还需要从byte[]转换成base64string 。更浪费性能。
liuchuan刘
2011-08-19 · 超过12用户采纳过TA的回答
知道答主
回答量:54
采纳率:0%
帮助的人:45.5万
展开全部
我是做.NET开发的人员。。看看我以前的代码吧,希望对你有帮助。。希望采纳。。
public void SevaPhoto(string photoFile)//路径 //添加照片
{
FileStream fs = new FileStream(photoFile,FileMode.Open,FileAccess.Read);
BinaryReader reader = new BinaryReader(fs);
byte[] photo = reader.ReadBytes((int)fs.Length);
reader.Close();
fs.Close();

string sql = "update Student set Photo=@photo where Sid='2'";
com = new SqlCommand(sql, conn);
SqlParameter sp = new SqlParameter("@photo",photo);
com.Parameters.Add(sp);
try
{
conn.Open();
com.ExecuteNonQuery();
}
catch (SqlException e)
{

}
finally
{
conn.Close();
}

}
public void ReadPhoto(string photoFile)
{
string sql = "select Photo from Student where Sid='2'";
com = new SqlCommand(sql, conn);
try
{
conn.Open();
SqlDataReader reader = com.ExecuteReader();
while (reader.Read())
{
byte[] photo = reader[0] as byte[];
FileStream fs = new FileStream(photoFile,FileMode.CreateNew);
fs.Write(photo,0,photo.Length);
fs.Close();
}
reader.Close();
//com.ExecuteNonQuery();
}
catch (SqlException e)
{

}
finally
{
conn.Close();
}
}
追问
谢了。。。。。。。。。。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2011-08-19
展开全部
byte[] b = (byte[])photo(photo是二进制数据)
if (b.Length != 0)
{
image1.ImageUrl= Response.OutputStream.Write(b, 0, b.Length);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友4e7acdd
2011-08-19 · TA获得超过1208个赞
知道小有建树答主
回答量:403
采纳率:0%
帮助的人:680万
展开全部
/// <summary>
/// 将数据转化为24bit图偈,以BGR形式传入数组
/// </summary>
/// <param name="source">BGR顺序的24bit图像像素数组,byte[0][]为B维,byte[1][]为G维,byte[2]为R维</param>
/// <param name="w">长</param>
/// <param name="h">高</param>
/// <returns>图像</returns>
unsafe public static Bitmap ReAssemble(byte[][] source, long w, long h) {
if (source == null || source[0].LongLength != w * h || source[1].LongLength != w * h || source[2].LongLength != w * h) return null;
Bitmap bmp=new Bitmap((int)w,(int)h,PixelFormat.Format24bppRgb);
BitmapData bd = bmp.LockBits(new Rectangle(0, 0, (int)w, (int)h), ImageLockMode.WriteOnly, PixelFormat.Format24bppRgb);
byte* lp = (byte*)bd.Scan0;
for (long j = 0; j < h; j++)
{
for (long i = 0; i < w; i++)
{
long index = i + j * w;
*lp=source[0][index];
*(lp + 1)=source[1][index];
*(lp + 2) = source[2][index];
lp += 3;
}
lp += bd.Stride - 3 * w;
}
bmp.UnlockBits(bd);
return bmp;
}

请注意,编译这个函数需要在项目-》设置中允许不安全代码,因为这行代码用到了指针
更多追问追答
追问
我拷到程序中报错啊   位置:lp  报的错误为:指针和固定大小缓冲区只能在不安全上下文中使用
追答
看最后一句话,
打开项目设置窗口,那里有一个复选框叫“允许不安全代码”,选中它,因为这个代码用了指针
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式