Cần chuyển đổi HTML thành GIF 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 HTML thành định dạng GIF hình ảnh chỉ với vài dòng mã JavaScript.
Xử lý tài liệu hiện đại JavaScript API tạo GIF từ HTML với tốc độ cao. Kiểm tra chất lượng của HTML thành GIF ngay trong trình duyệt. JavaScript mạnh mẽ cho phép chuyển đổi HTML sang nhiều định dạng ảnh phổ biến.
Ví dụ sau đây cho thấy làm thế nào để chuyển đổi HTML đến một GIF hình ảnh trong JavaScript.
Thực hiện theo các bước đơn giản để biến một HTML file vào GIF định dạng đồ họa. Đọc HTML từ ổ đĩa cục bộ, sau đó chỉ cần lưu nó dưới dạng GIF, chỉ định định dạng hình ảnh cần thiết bằng phần mở rộng GIF Đối với cả HTML và ghi GIF bạn có thể sử dụng các tên tệp đủ điều kiện. Nội dung đồ họa GIF đầu ra sẽ giống với HTML tệp.
npm install @aspose/words
Sao chép
const aw = require('@aspose/words');
var doc = new aw.Document("Input.html")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.gif`);
}
const aw = require('@aspose/words');
var doc = new aw.Document("Input.html")
doc.save("Output.gif")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.html")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.gif`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.html")
doc.save("Output.gif")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.html")
shape.getShapeRenderer().save("Output.gif", new aw.Saving.ImageSaveOptions(aw.SaveFormat.gif))
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 HTML sang nhiều định dạng tệp khác: