0
我想從zip文件中設置圖片框,而不需要解壓縮zip。 我的代碼:如何設置picturebox圖像位置從zip沒有extrat?
ZipFile zip = new ZipFile("data.zip");
using (Stream s = zip["p3.png"].OpenReader())
{
picturebox.ImageLocation = s.ToString();
}
Picture Box顯示錯誤圖像。