需要以 TIFF 圖像 PNG 格式嗎?隨著Aspose.Words for Node.js via .NET任何開發人員可以輕鬆地將 TIFF 成 PNG 只需幾行 JavaScript 代碼。
現代圖像處理 JavaScript API 從 TIFF 圖片高速 PNG 直接在瀏覽器中 TIFF 到 PNG 圖像轉換的質量。強大的 JavaScript 庫允許將 TIFF 圖像轉換為許多流行的圖形格式。
以下示例演示如何將 TIFF 中的 PNG JavaScript 。
按照簡單的步驟將 TIFF 轉換為 PNG 格式。從本地驅動器讀取 TIFF 圖像,然後將其保存為 PNG PNG 擴展名指定所需的圖像格式。對於 TIFF 讀取和 PNG 寫入,您可以使用完全限定的文件名。輸出 PNG 內容將與原始 TIFF 圖像相同。
npm install @aspose/words
複製
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.tiff")
shape.getShapeRenderer().save("Output.png", new aw.Saving.ImageSaveOptions(aw.SaveFormat.Png))
const aw = require('@aspose/words');
var doc = new aw.Document("Input.tiff")
doc.save("Output.png")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.tiff")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.png`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.tiff")
doc.save("Output.png")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.tiff")
shape.getShapeRenderer().save("Output.png", new aw.Saving.ImageSaveOptions(aw.SaveFormat.png))
We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.
This package is compatible with Node.js 14.17.0 or higher.