JavaScript 에서 Word 를 압축하는 코드

Word 파일의 원래 품질을 유지하면서 크기와 내용을 최적화하는 고성능 Node.js 라이브러리

Word Optimization API을 사용하여 Node.js에서 Word 처리 소프트웨어를 개발하세요. 이 강력한 Node.js 솔루션은 Word 파일의 크기를 손쉽게 최적화하고 줄이는 데 도움이 됩니다. Word 압축 기능을 온라인에서 무료로 테스트하세요!

코드 스니펫 보기

JavaScript 에서 JavaScript Word 파일 압축

큰 Word 파일을 품질 손실 없이 작게 만듭니다. 불필요하고 사용하지 않는 데이터를 삭제하십시오. 코드에서 Word 파일의 크기를 줄입니다. JavaScript 라이브러리는 개발자에게 Word 콘텐츠를 최적화하기 위한 통합 API를 제공합니다.

JavaScript 을 사용하여 JavaScript Word 파일의 크기 줄이기

JavaScript 라이브러리는 독립 실행형 솔루션이며 타사 소프트웨어를 설치할 필요가 없습니다.

'Aspose.Words for Node.js via .NET' 으로 무손실 압축 및 심층 콘텐츠 최적화가 쉬워졌습니다. 다음 예제는 JavaScript 에서 JavaScript Word 파일의 내용을 최적화하는 방법을 보여줍니다.

DOCX 파일을 압축하기 위한 JavaScript 의 코드 예
최적화/압축하려는 파일 업로드
코드 실행
목록에서 대상 형식 선택
npm install @aspose/words
복사
const aw = require('@aspose/words');

var doc = new aw.Document("Input.docx");
doc.cleanup();

var shapes = doc.getChildNodes(aw.NodeType.Shape, true)
for (var shape of shapes) {
    if (shape.hasImage()) {
        // 그것은 이미지 압축 라이브러리를 선택하는 개발자에 달려 있습니다.
        const imageData = shape.getImageData().toStream();

        // ...
        // 이미지를 압축하고 모양으로 다시 설정합니다.
        shape.getImageData().setImage(compressedImageBuffer);
    }
}

var saveOptions = new aw.Saving.OoxmlSaveOptions()
saveOptions.compressionLevel = aw.Saving.CompressionLevel.Maximum

doc.save("Output.docx", saveOptions)
const aw = require('@aspose/words'); var doc = new aw.Document("Input.docx"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // 그것은 이미지 압축 라이브러리를 선택하는 개발자에 달려 있습니다. const imageData = shape.getImageData().toStream(); // ... // 이미지를 압축하고 모양으로 다시 설정합니다. shape.getImageData().setImage(compressedImageBuffer); } } var saveOptions = new aw.Saving.PdfSaveOptions() saveOptions.cacheBackgroundGraphics = true doc.save("Output.docx", saveOptions) const aw = require('@aspose/words'); var doc = new aw.Document("Input.docx"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // 그것은 이미지 압축 라이브러리를 선택하는 개발자에 달려 있습니다. const imageData = shape.getImageData().toStream(); // ... // 이미지를 압축하고 모양으로 다시 설정합니다. shape.getImageData().setImage(compressedImageBuffer); } } doc.save("Output.docx") const aw = require('@aspose/words'); var doc = new aw.Document("Input.docx"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // 그것은 이미지 압축 라이브러리를 선택하는 개발자에 달려 있습니다. const imageData = shape.getImageData().toStream(); // ... // 이미지를 압축하고 모양으로 다시 설정합니다. shape.getImageData().setImage(compressedImageBuffer); } } var saveOptions = new aw.Saving.OoxmlSaveOptions() saveOptions.compressionLevel = aw.Saving.CompressionLevel.Maximum doc.save("Output.docx", saveOptions) const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) shape = builder.insertImage("Input.docx") var saveOptions = new aw.Saving.ImageSaveOptions(aw.SaveFormat.Docx) shape.getShapeRenderer().save("Output.docx", saveOptions)
코드 실행

JavaScript 에서 Word 를 압축하는 방법

  1. Aspose.Words for Node.js via .NET 설치합니다.
  2. JavaScript 프로젝트에 라이브러리 참조를 추가합니다(라이브러리 가져오기).
  3. JavaScript 에서 소스 Word 파일을 엽니다.
  4. 품질 손실 없이 Word 을 압축합니다.
  5. Document.cleanup() 메서드를 호출합니다. 결과 코드는 출력 파일 형식에 따라 다를 수 있습니다.
  6. 압축된 결과를 Word 파일로 가져옵니다.

WORD 파일을 최적화하고 압축하는 JavaScript 라이브러리

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.

System Requirements

This package is compatible with Node.js 14.17.0 or higher.

기타 지원되는 파일 형식 최적화

다른 많은 파일 형식으로 파일을 최적화할 수 있습니다.

5%

Aspose 제품 업데이트 구독

월간 뉴스레터와 제안을 우편함으로 직접 받으십시오.

© Aspose Pty Ltd 2001-2024. 판권 소유.