프로그래밍 방식으로 JPG 이미지를 DOC 로 변환해야 합니까? Node.js via .NET 용 Aspose.Words를 사용하면 모든 개발자가 단 몇 줄의 JavaScript 코드만으로 JPG 를 DOC 문서 형식으로 변환할 수 있습니다.
최신 이미지 처리 JavaScript API는 전문적인 품질의 JPG 이미지에서 DOC 문서를 생성합니다. 브라우저에서 바로 최고 품질의 JPG 에서 DOC 로의 변환을 테스트해 보세요. 강력한 JavaScript 라이브러리를 사용하면 JPG 이미지를 거의 모든 DOC 형식으로 변환할 수 있습니다.
다음 예에서는 JavaScript 에서 JPG 를 DOC 문서 형식으로 변환하는 방법을 보여줍니다.
JPG 이미지를 DOC 문서 형식으로 변환하는 쉬운 단계를 따르세요. 로컬 드라이브에서 JPG 파일을 읽은 다음 DOC 문서 확장자로 필요한 파일 형식을 지정하여 문서 형식으로 저장하면 됩니다. JPG 읽기 및 DOC 문서 작성 모두에 대해 정규화된 파일 이름을 사용할 수 있습니다.
npm install @aspose/words
복사
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.jpg")
doc.save("Output.doc")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.jpg")
doc.save("Output.doc")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.jpg")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.doc`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.jpg")
doc.save("Output.doc")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.jpg")
shape.getShapeRenderer().save("Output.doc", new aw.Saving.ImageSaveOptions(aw.SaveFormat.doc))
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.
JPG 을(를) 다른 많은 파일 형식으로 변환할 수 있습니다.