0

我使用下面的代码将 url 流转换为 tiff 图像。但转换后,转换后的图像无法打开预览。有任何想法吗?

var myRequest = (HttpWebRequest)WebRequest.Create("http://www.google.com");

myRequest.Method = "GET";

var myResponse = myRequest.GetResponse();
var responseStream = myResponse.GetResponseStream();
var memoryStream = new MemoryStream();

responseStream.CopyTo(memoryStream);

var loadOptions = new LoadOptions();

loadOptions.LoadFormat = LoadFormat.Html;

var doc = new Document(memoryStream, loadOptions);
var htmlOptions = new HtmlFixedSaveOptions();

htmlOptions.ExportEmbeddedCss = true;
htmlOptions.ExportEmbeddedFonts = true;
htmlOptions.ExportEmbeddedImages = true;
doc.Save(@"C:\out.tif", htmlOptions); 
4

1 回答 1

0

您在 Save() 方法中使用 HtmlFixedSaveOptions,因此它将另存为 HTML。尝试在任何文本编辑器中打开 out.tif,您将看到 HTML 标记。

请使用 Save() 方法中的 ImageSaveOptions 以图像格式保存。即使那样,如果您手动从流中的 URL 获取网页,它也只会获取 HTML。如果没有 css,保存的图像将不好看。我建议让 Aspose 处理 URL。

// If you provide a URL in string, Aspose will load the web page
var doc = new Aspose.Words.Document("http://www.google.com");
// If you just provide the TIF extension, it will save as TIFF image
doc.Save(@"c:\out.tif");
// TO customize, you can use save options in save method

我为 Aspose 工作,担任开发人员宣传员。

于 2015-02-03T07:42:23.547 回答