博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
把指定图片转换为byte
阅读量:4972 次
发布时间:2019-06-12

本文共 489 字,大约阅读时间需要 1 分钟。

#region 把指定图片转换为byte

        /// <summary>
       
/// 把指定图片转换为byte
       
/// </summary>
       
/// <param name="path">图形路径</param>
       
/// <returns></returns>
        public static byte[] GetPhoto(string path)
        {
           
string str = path;
           
byte[] photo = new byte[0];
           
if (File.Exists(path))
            {
                FileStream file
= new FileStream(str, FileMode.Open, FileAccess.Read);
                photo
= new byte[file.Length];
                file.Read(photo,
0, photo.Length); file.Close(); } return photo;
        }
       
#endregion

转载于:https://www.cnblogs.com/jhabb/archive/2011/01/04/1925491.html

你可能感兴趣的文章
在TabControl中的TabPage选项卡中添加Form窗体
查看>>
inout port仿真
查看>>
oracle中SET DEFINE意思
查看>>
个人作业-最长英语链
查看>>
JMeter-性能测试之报表设定的注意事项
查看>>
1066-堆排序
查看>>
仿面包旅行个人中心下拉顶部背景放大高斯模糊效果
查看>>
强大的css3
查看>>
[Luogu] 引水入城
查看>>
放张图片试试
查看>>
【WEB】高并发Web服务的演变-节约系统内存和CPU
查看>>
逻辑漏洞挖掘方式
查看>>
Servlet 编写过滤器
查看>>
Redis 数据类型
查看>>
Console-算法-回文数
查看>>
C#常用格式输出
查看>>
创建数据库表的SQL语句
查看>>
在Visual Studio 2010[VC++]中使用ffmpeg类库
查看>>
POJ 1488 TEX Quotes
查看>>
如鹏网.Net基础1 第二章:C#语言基础1
查看>>