ต้องการแปลงเอกสารจากรูปแบบ DOCX เป็นรูปแบบ HTML โดยทางโปรแกรมหรือไม่ ด้วย Aspose.Words สำหรับ Node.js via .NET นักพัฒนาทุกคนสามารถแปลงรูปแบบ DOCX เป็นรูปแบบ HTML ได้โดยใช้โค้ด JavaScript เพียงไม่กี่บรรทัด
การประมวลผลเอกสารสมัยใหม่ JavaScript API สร้าง HTML จากเอกสาร DOCX ด้วยความเร็วสูง ทดสอบคุณภาพของการแปลง DOCX เป็น HTML ในเบราว์เซอร์ของคุณ ไลบรารี JavaScript อันทรงพลังช่วยให้สามารถแปลงไฟล์ DOCX เป็นรูปแบบยอดนิยมมากมาย
ตัวอย่างต่อไปนี้สาธิตวิธีการแปลงเอกสาร DOCX เป็น HTML ใน JavaScript
ทำตามขั้นตอนง่ายๆ เพื่อเปลี่ยนเอกสาร DOCX เป็นรูปแบบ HTML อ่านไฟล์ DOCX ของคุณจากไดรฟ์ในเครื่อง จากนั้นบันทึกในรูปแบบเอกสารเว็บ โดยระบุรูปแบบไฟล์ที่ต้องการด้วยนามสกุล HTML สำหรับทั้งการอ่าน DOCX และการเขียน HTML คุณสามารถใช้ชื่อไฟล์แบบเต็มได้ เนื้อหาและการจัดรูปแบบ HTML เอาต์พุตจะเหมือนกับเอกสาร DOCX ต้นฉบับ
npm install @aspose/words
สำเนา
const aw = require('@aspose/words');
var doc = new aw.Document("Input.docx")
doc.save("Output.html")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.docx")
doc.save("Output.html")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.docx")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.html`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.docx")
doc.save("Output.html")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.docx")
shape.getShapeRenderer().save("Output.html", new aw.Saving.ImageSaveOptions(aw.SaveFormat.html))
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.
คุณสามารถแปลง DOCX เป็นรูปแบบไฟล์อื่นๆ ได้มากมาย: