จำเป็นที่จะต้องแปลง PNG ภาพเพื่อ GIF รูปแบบโปรแกรม? ด้วย Aspose.Words for Node.js via .NET พัฒนาใด ๆ สามารถแปลง PNG เข้า GIF ที่มีเพียงไม่กี่บรรทัดของ JavaScript รหัส
การประมวลผลภาพสมัยใหม่ JavaScript API สร้าง GIF จาก PNG ภาพด้วยความเร็วสูง ทดสอบคุณภาพของ PNG ถึง GIF ในเบราว์เซอร์ JavaScript อันทรงพลังช่วยให้แปลง PNG เป็นรูปแบบกราฟิกยอดนิยมมากมาย
ตัวอย่างต่อไปนี้สาธิตวิธีการแปลง PNG เป็น GIF ใน JavaScript.
ทำตามขั้นตอนง่ายๆ เพื่อเปลี่ยน PNG เป็นรูปแบบ GIF อ่าน PNG อิมเมจจากโลคัลไดรฟ์ จากนั้นบันทึกเป็น GIF โดยระบุรูปแบบรูปภาพที่ต้องการโดยส่วนขยาย GIF สำหรับทั้ง PNG การอ่านและการ GIF เขียนคุณสามารถใช้ชื่อไฟล์ที่มีคุณสมบัติครบถ้วน เนื้อหาเอาต์พุต GIF จะเหมือนกับรูปภาพ PNG.
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.gif", new aw.Saving.ImageSaveOptions(aw.SaveFormat.Gif))
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
doc.save("Output.gif")
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}.gif`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.gif")
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.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.
คุณสามารถแปลง PNG เป็นรูปแบบไฟล์อื่นๆ ได้มากมาย: