需要以編程方式將 TIFF 圖像轉換為 Word?借助Aspose.Words for Node.js via .NET,任何開發人員只需幾行 JavaScript 代碼即可將 TIFF 轉換為 Word 文檔格式。
現代圖像處理 JavaScript API 從具有專業品質的 TIFF 圖像創建 Word 文檔。直接在瀏覽器中測試最高質量的 TIFF 到 Word 轉換。強大的 JavaScript 庫允許將 TIFF 圖像轉換為幾乎所有 Word 格式。
以下示例演示瞭如何在 JavaScript 中將 TIFF 轉換為 Word 文檔格式。
按照簡單的步驟將 TIFF 圖像轉換為 Word 文檔格式。從本地驅動器讀取 TIFF 文件,然後只需將其保存為文檔格式,並通過 Word 文檔擴展名指定所需的文件格式。對於 TIFF 讀取和 Word 文檔寫入,您可以使用完全限定的文件名。
npm install @aspose/words
複製
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.tiff")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.tiff")
doc.save("Output.docx")
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}.docx`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.tiff")
doc.save("Output.docx")
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.docx", new aw.Saving.ImageSaveOptions(aw.SaveFormat.docx))
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.