C#picturebox控制項使用

來源:互聯網
上載者:User

標籤:blog   http   io   ar   os   使用   java   sp   for   

       PictureBox是C#常用圖片空間,本文是學習中搜集網路資料的一些整理和記錄

      1,PictureBox載入圖片

          

using System.Drawing;//方式1,從圖片檔案載入  //下面的路徑是寫死的,可以擷取程式運行路徑,這樣更靈活       Image AA = new Bitmap(@"/Program Files/PictureBoxControlTest/tinyemulator_content.jpg");
     pictureBox1.Image =AA;
//方式2,通過imageList控制項載入,這種方法的好處是可以設定圖片的大小 imageList1.ImageSize = new Size(92,156); pictureBox1.Image = imageList1.Images[0]; 方式3 從程式的資源檔載入.這樣做的好處是無需發布圖片,已經被整合到程式集中去了. Bitmap bmp=new Bitmap (System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream ("PictureBoxControlTest.tinyemulator_res.jpg")); pictureBox1.Image =bmp;

  2 載入圖片後本地圖片無法刪除問題(載入方式1)

              在使用方式1載入後,本地圖片仍然無法刪除

              解決方案1.0,將Image設定為空白(pictureBox1.Image=NULL)仍然不行,原因是資源沒有釋放(等待記憶體回收行程自動釋放);

              解決方案2.0,在1.0的基礎上進行手動釋放資源(AA.Dispose();),如果picturebox仍然在使用,可能會報錯;

              解決方案3.0,將使用 流將image讀入記憶體,然後使用副本操作

             

        private MemoryStream MyReadFile(string picPath)        {            if (!File.Exists(picPath))                return null;            using (FileStream file = new FileStream(picPath, FileMode.Open))            {                byte[] b = new byte[file.Length];                file.Read(b,0,b.Length);                MemoryStream stream = new MemoryStream(b);                return stream;            }        }        private Image MyGetFile(string picPath)        {            MemoryStream stream = MyReadFile(picPath);            return stream == null ? null : Image.FromStream(stream);        }

      3  PictureBox屬性 SizeMode

       SizeMode = Normal ,Image 置於 PictureBox 的左上方,凡是因過大而不適合 PictureBox 的任何映像部分都將被剪裁掉;

        SizeMode=StretchImage ,會使Image映像展開或收縮,以便適合 PictureBox控制項大小;

        SizeMode=AutoSize ,會使PictureBox控制項調整大小,以便總是適合Image映像的大小;

       SizeMode=CenterImage,會使映像居於PictureBox工作區的中心,其它被剪掉;

       SizeMode=Zoom ,  會使映像被展開或收縮以適應 PictureBox控制項,但是仍然保持原始縱橫比(映像大小按其原有的大小比例被增加或減小)

      原文連結:

                 http://blog.csdn.net/patriot074/article/details/4295847

                 http://blog.csdn.net/jinhongdu/article/details/7703251

                 http://msdn.microsoft.com/zh-cn/library/system.windows.forms.pictureboxsizemode%28v=vs.110%29.aspx

(轉)C#picturebox控制項使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.