我的應用程序必須處理存儲在MemoryStream中的TIFF文件,但LibTiff.Net始終爲字段值返回null。 MemoryStream ms = new MemoryStream();
FileStream fs = new FileStream("testfile.tif", FileMode.Open);
fs.CopyTo(ms);
//It
根據How to Convert TIFF to JPG Inside Silverlight, client side, using a control or a class/function?我試圖將LibTiff.NET庫移植到Silverlight,但失敗了。 如果有人向我解釋如何刪除不支持的Silverlight而不會失去解壓縮CCITT Group 4 TIFF文件的情況,我將不勝感激