2010-05-30 101 views
0

我使用以下代碼在資源中獲取圖像的縮略圖,並在Picturebox上顯示。將縮略圖圖像從目錄加載到PictureBox中

Image tmp = (System.Drawing.Image)myManager.GetObject(tempImage); 
       cfgPassPicture[m].Image = tmp.GetThumbnailImage(40, 40, new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback), System.IntPtr.Zero); 

如何在目錄(而不是資源)中爲圖像執行此操作,只給出URL? 我可以通過ImageLocation屬性將圖像加載到PictureBox,但不知道如何使用PictureBox的Image屬性。

感謝

回答

1
myPictureBox.Image = Image.FromFile("yourimagepath.jpg"); 
相關問題