zoukankan      html  css  js  c++  java
  • Image <=> byte[]

            private Byte[] Image2Bytes(string imagefilename)

            {

                System.IO.FileStream stream = new System.IO.FileStream(imagefilename, System.IO.FileMode.OpenOrCreate);

                byte[] bytes = new byte[stream.Length];

                if (stream.CanRead)

                {

                    stream.Read(bytes, 0, (int)stream.Length);

                }

                stream.Close();

                return bytes;

            }

     

            private Byte[] Image2Bytes(Image image)

            {

                byte[] Ret=null;

                try

                {

                    using (MemoryStream ms = new MemoryStream())

                    {

                        image.Save(ms, ImageFormat.Jpeg);

                        Ret = ms.ToArray();

                    }

                }

                catch (Exception) { throw; }

                return Ret;

            }

     

            private Image Bytes2Image(byte[] bytes)

            {

                MemoryStream ms2 = new MemoryStream(bytes, 0, bytes.Length);

                ms2.Write(bytes, 0, bytes.Length);

                return Image.FromStream(ms2, true);

            }

  • 相关阅读:
    LeetCode91 Decode Ways
    LeetCode93 Restore IP Addresses
    LeetCode92 Reverse Linked List II
    LeetCode90 Subsets II
    LeetCode89 Gray Code
    最长公共子序列及其引申问题
    constexpr:编译期与运行期之间的神秘关键字
    I/O模型: 阻塞、非阻塞、I/O复用、同步、异步
    LeetCode86 Partition List
    maven 安装 过程
  • 原文地址:https://www.cnblogs.com/yansc/p/1402836.html
Copyright © 2011-2022 走看看