Stream与byte[]与Image与string

        public byte[] GetByteImage(Image img)
        {
            byte[] bt = null;
            if (!img.Equals(null))
            {
                using (MemoryStream mostream = new MemoryStream())
                {
                    Bitmap bmp = new Bitmap(img);
                    bmp.Save(mostream, System.Drawing.Imaging.ImageFormat.Bmp);//将图像以指定的格式存入缓存内存流
                    bt = new byte[mostream.Length];
                    mostream.Position = 0;//设置留的初始位置
                    mostream.Read(bt, 0, Convert.ToInt32(bt.Length));
                }
            }
            return bt;
        }
时间: 2024-10-04 17:24:11

Stream与byte[]与Image与string的相关文章

Stream 和 byte[] 之间的转换

北京网站建设-恒动时空一. 二进制转换成图片 MemoryStream ms = new MemoryStream(bytes); ms.Position = 0; Image img = Image.FromStream(ms); ms.Close(); this.pictureBox1.Image 二. C#中byte[]与string的转换代码1. System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding

C# Stream 和 byte[] 之间的转换

原文:C# Stream 和 byte[] 之间的转换 Stream 和 byte[] 之间的转换 /* - - - - - - - - - - - - - - - - - - - - - - - - * Stream 和 byte[] 之间的转换 * - - - - - - - - - - - - - - - - - - - - - - - */ /// <summary> /// 将 Stream 转成 byte[] /// </summary> public byte[] S

Stream与byte转换

将 Stream 转成 byte[] /// <summary> /// 将 Stream 转成 byte[] /// </summary> public byte[] StreamToBytes(Stream stream) { byte[] bytes = new byte[stream.Length]; stream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的开始 stream.Seek(0, SeekOrigin.Begin);

C# Stream 和 byte[] 之间的转换(文件流的应用)

一. 二进制转换成图片 MemoryStream ms = new MemoryStream(bytes); ms.Position = 0; Image img = Image.FromStream(ms); ms.Close(); this.pictureBox1.Image 二. C#中byte[]与string的转换代码 1.System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding(); byte[]

关于Stream和byte之间的转换(from www.sysoft.cc)

C# Stream 和 byte[] 之间的转换 一. 二进制转换成图片MemoryStream ms = new MemoryStream(bytes);ms.Position = 0;Image img = Image.FromStream(ms);ms.Close();this.pictureBox1.Image 二. C#中byte[]与string的转换代码 1.System.Text.UnicodeEncoding converter = new System.Text.Unicod

C# Stream 与 byte[]、文件的转换

/* - - - - - - - - - - - - - - - - - - - - - - - - * Stream 和 byte[] 之间的转换 * - - - - - - - - - - - - - - - - - - - - - - - */ /// <summary> /// 将 Stream 转成 byte[] /// </summary> public byte[] StreamToBytes(Stream stream) {     byte[] bytes = n

Byte Array to Hexadecimal String

Lookup Text: 23,879.41 (20.8X faster) Sentence: 1.15 (23.9X faster) /// <summary> /// Hex string lookup table. /// </summary> private static readonly string[] HexStringTable = new string[] { "00", "01", "02", &quo

stream转byte数组几种方式

第一种,写法最简单的.使用原生IO,一个字节一个字节读: //一个字符一个字符读,太慢 int i; while((i=in.read()) != -1){ i = in.read(); arr[j++] = i; } 这种方式非常的慢,极为不推荐. 第二种,一次读完: byte[] arr = new byte[in.available()]; in.read(arr); 这种和第一种相反,一次读完流,这种情况在文件稍大时会非常占用内存,也极为不推荐. 第三种,缓冲读: byte[]buff

How to convert a byte to its binary string representation

How to convert a byte to its binary string representation For example, the bits in a byte B are 10000010, how can I assign the bits to the string strliterally, that is, str = "10000010". byte b1 = (byte) 129; String s1 = String.format("%8s&