標籤: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控制項使用