Cần phải chuyển đổi một TIFF ảnh để PNG dạng lập trình? Với Aspose.Words for Node.js via .NET bất kỳ nhà phát triển nào cũng có thể dễ dàng chuyển đổi TIFF thành PNG chỉ với vài dòng mã JavaScript.
Xử lý ảnh hiện đại JavaScript API tạo PNG từ TIFF với tốc độ cao. Kiểm tra chất lượng của TIFF sang PNG ngay trong trình duyệt. JavaScript mạnh mẽ cho phép chuyển đổi TIFF sang nhiều định dạng đồ họa phổ biến.
Ví dụ sau minh họa cách chuyển đổi TIFF thành PNG trong JavaScript.
Làm theo các bước đơn giản để chuyển TIFF thành PNG định dạng Đọc TIFF từ ổ đĩa cục bộ, sau đó chỉ cần lưu nó dưới dạng PNG, chỉ định định dạng hình ảnh cần thiết bằng phần mở rộng PNG Đối với cả việc đọc TIFF PNG bạn có thể sử dụng các tên tệp đủ điều kiện. PNG đầu ra sẽ giống với TIFF hình ảnh.
npm install @aspose/words
Sao chép
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.
Bạn có thể chuyển đổi TIFF sang nhiều định dạng tệp khác: