2014-04-04 32 views

回答

0

我應該使用位圖。正確的代碼:

ZipFile zip = new ZipFile("data.zip"); 
using (Stream s = zip["p3.png"].OpenReader()) 
{ 
    Bitmap bitmap= new Bitmap(s); 
    PictureBox picturebox.Image = bitmap; 
}