图片转换图片流方法(二进制流)

 

/// <summary>
/// 图片转换图片流方法
/// </summary>
/// <param name="path">文件路径</param>
/// <returns></returns>
private byte[] imgbytefromimg(string path)
{
FileStream f = new FileStream(path, FileMode.Open, FileAccess.Read);
Byte[] imgByte = new Byte[f.Length];//把图片转成 Byte型 二进制流
f.Read(imgByte, 0, imgByte.Length);//把二进制流读入缓冲区
f.Close();
return imgByte;
}

 

//以下两个方法来源网络没有测试

 // in1为  本地文件图片地址转换成流(例如:D:\13071494\pic\test.jpg)
File file = new File(path);
InputStream in1 = new FileInputStream(file);
            
// in2 为网络地址图片地址转换成流(例如: http://10.19.95.100/uimg/sop/commodity/1_x.jpg)
 java.net.URL url = new java.net.URL(path);
URLConnection conn = url.openConnection();
InputStream in2 = conn.getInputStream();

转载于:https://www.cnblogs.com/isking/p/6268565.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值