在C#中如何将byte[] 类型转换为图片类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在C#中如何将byte[] 类型转换为图片类型相关的知识,希望对你有一定的参考价值。
在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 。更浪费性能。 参考技术A 我是做.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();
追问
谢了。。。。。。。。。。。。
参考技术B byte[] b = (byte[])photo(photo是二进制数据)if (b.Length != 0)
image1.ImageUrl= Response.OutputStream.Write(b, 0, b.Length);
参考技术C /// <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 报的错误为:指针和固定大小缓冲区只能在不安全上下文中使用
追答看最后一句话,
打开项目设置窗口,那里有一个复选框叫“允许不安全代码”,选中它,因为这个代码用了指针
还是报指针和固定大小缓冲区只能在不安全上下文中使用的错误啊。
追答你把所有调用那个函数的函数声明前都加上unsafe,最好是把那个类和调用那个类的类加上unsafe
追问恩,可以了,谢了。。。。。。。。。
本回答被提问者采纳c#中怎么将string转换成int型
使用Convert.ToInt32()函数,如Convert.ToInt32("123")可以将字符串“123”转化为整形123。
C#是一个强类型的语言,它的数值类型有一些可以进行隐式转换,其他的必须显式转换,隐式转换的类型只能是长度短的类型转换成长的类型,int可以转换成long、float、double、decimal,反之必须显式的转换。
扩展资料:
C#的所有数据类型:
1、基本数据类型
C#拥有比C/C++或者Java更广泛的数据类型。这些类型是bool、byte、ubyte、short、ushort、int、uint、long、ulong、float、double和decimal。又像C和C++一样,每个数据类型都有有符号和无符号两种类型。
2、两个基本类
一个名叫object的类是所有其他类的基类。而一个名叫string的类也象object一样是这个语言的一部分。作为语言的一部分存在,意味着编译器有可能使用它,无论何时在程序中写入一句带引号的字符串,编译器会创建一个string对象来保存它。
3、参数传递
方法可以被声明接受可变数目的参数。缺省的参数传递方法是对基本数据类型进行值传递。ref关键字可以用来强迫一个变量通过引用传递,这使得一个变量可以接受一个返回值。out关键字也能声明引用传递过程,与ref不同的地方是,它指明这个参数并不需要初始值。
4、COM的集成
C#对Windows程序最大的卖点可能就是它与COM的无缝集成了,COM就是微软的Win32组件技术.实际上,最终有可能在任何.NET语言里编写COM客户和服务器端。C#编写的类可以子类化一个已存在的COM组件。
5、索引下标
一个索引与属性除了不使用属性名来引用类成员而是用一个方括号中的数字来匿名引用(就象用数组下标一样)以外是相似的。
6、代理和反馈
一个代理对象包括了访问一个特定对象的特定方法所需的信息。只要把它当成一个聪明的方法指针就行了。代理对象可以被移动到另一个地方,然后可以通过访问它来对已存在的方法进行类型安全的调用。
参考资料来源:Microsoft Docs-Convert.ToInt32方法 (Single)
参考技术Aint.Parse 方法或者 int.TryParse方法都可以将一个string类型的数据转换成int类型。
int.Parse法
intA =int.Parse(str);
int.TryParse法
int.TryParse(str, out intA);
扩展资料:
1.String对象是动态对象,需要创建对象实例后才能引用它的属性和方法。在创建一个String对象变量时,可以使用new运算符来创建,也可以直接将字符串赋给变量。
2.int是一种数据类型,在编程语言(C、C++、C#、Java等)中,是用于定义整数类型变量的标识符。
参考资料:string—百度百科
INT(数据类型)—百度百科
参考技术B需要准备的工具:电脑
1、String 转 int 方法1,使用Integer类中的parseInt()方法。
2、String 转 int 方法2,使用Integer类中的valueOf()和intValue()方法。
3、使用正则表达式判断String是否为int整型or浮点型数据。动态选择方法转换数据。
4、String 转 double 的方法。
5、String 转 Float 的方法。
6、注意,当String为Long数据类型时,即String长度超过int的长度时转换int数据类型时会出现错误的结果。
参考技术CC# 中将string转换成int型方式如下:
int intA = 0;
1.intA =int.Parse(str);
2.int.TryParse(str, out intA);
3.intA = Convert.ToInt32(str);
以上都可以,其中 1和3 需要try{}异常,2不需要。
TryParse() Usage1:
int number;
bool result = Int32.TryParse(value, out number);
//TryParse Usage2:
int start, end;
int.TryParse(minTimeTxt.Text, out start);
int.TryParse(maxTimeTxt.Text, out end);
// Parse Usage
try
start = int.Parse(minTimeTxt.Text);
end = int.Parse(maxTimeTxt.Text);
catch (Exception e)
throw e;
int -> string : ToString()
eg:
int x = 13;
x.ToString();因为string类型转换成int类型成功的话,有一个条件就是string里面是属于int类型的,否则就会报错,这样就需要捕捉可能发生的转换异常。
判断字符串是否由数字组成(能不使用异常处理最好不使用):
public static bool IsNumber(String strNumber)
Regex objNotNumberPattern = new Regex(/"[^0-9.-]/");
Regex objTwoDotPattern = new Regex(/"[0-9]*[.][0-9]*[.][0-9]*/");
Regex objTwoMinusPattern = new Regex(/"[0-9]*[-][0-9]*[-][0-9]*/");
String strValidRealPattern = /"^([-]|[.]|[-.]|[0-9])[0-9]*[.]*[0-9]+$/";
String strValidIntegerPattern = /"^([-]|[0-9])[0-9]*$/";
Regex objNumberPattern = new Regex(/"(/" + strValidRealPattern + /")|(/" + strValidIntegerPattern + /")/");
return !objNotNumberPattern.IsMatch(strNumber) &&
!objTwoDotPattern.IsMatch(strNumber) &&
!objTwoMinusPattern.IsMatch(strNumber) &&
objNumberPattern.IsMatch(strNumber);
参考技术D int intA = 0;1.intA =int.Parse(str);
2.int.TryParse(str, out intA);
3.intA = Convert.ToInt32(str);
以上都可以,其中 1和3 需要try{}异常,2不需要。
以上是关于在C#中如何将byte[] 类型转换为图片类型的主要内容,如果未能解决你的问题,请参考以下文章
java中如何让byte[]与string类型转换后,保持不变
C# 无法将类型为“System.Byte[]”的对象强制转换为类型“System.Data.DataTable
无法在 C# 中将类型 'byte[]' 隐式转换为 'byte?[]'