需要以 圖片 轉換為 BMP 圖像嗎?使用Aspose.Words for Node.js via .NET任何開發人員都可以輕鬆地將 圖片 轉換為 BMP 圖像格式,只需幾行 JavaScript 代碼。
現代文檔處理 JavaScript API 從 圖片 高速 BMP 直接在瀏覽器中 圖片 到 BMP 轉換的質量。強大的 JavaScript 庫允許將 圖片 文件轉換為許多流行的圖像格式。
下面的例子演示了如何轉換 圖片 為 BMP 畫面中 JavaScript 。
按照簡單的步驟將 圖片 文件轉換為 BMP 圖形格式。從本地驅動器讀取 圖片 ,然後將其保存為 BMP BMP 擴展名指定所需的圖像格式。對於 圖片 讀取和 BMP 寫入,您可以使用完全限定的文件名。輸出 BMP 圖形內容將與原始 圖片 文件相同。
npm install @aspose/words
複製
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.png")
shape.getShapeRenderer().save("Output.bmp", new aw.Saving.ImageSaveOptions(aw.SaveFormat.Bmp))
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
doc.save("Output.bmp")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.bmp`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.bmp")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.png")
shape.getShapeRenderer().save("Output.bmp", new aw.Saving.ImageSaveOptions(aw.SaveFormat.bmp))
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.
您可以將圖片轉換為許多其他文件格式: