Codul de comprimat JPG în JavaScript

Bibliotecă Node.js de înaltă performanță pentru a optimiza dimensiunea și conținutul fișierelor JPG, menținând în același timp calitatea lor originală

Dezvoltați software-ul de procesare JPG în Node.js folosind JPG Optimization API. Această soluție puternică Node.js vă ajută să optimizați și să reduceți fără efort dimensiunea fișierelor JPG. Testați capacitățile de comprimare JPG online gratuit!

Vizualizați fragmentul de cod

Comprimați JPG fișierul în JavaScript

Reduceți fișierele mari JPG fără pierderi de calitate. Ștergeți datele inutile și neutilizate. Reduceți dimensiunea unui JPG fișier în cod. JavaScript biblioteca oferă dezvoltatorilor un API integrat pentru a optimiza conținutul JPG.

Reduceți dimensiunea JPG fișierelor folosind JavaScript

JavaScript biblioteca este o soluție autonomă și nu necesită instalarea unui software terță parte.

Compresie fără pierderi și optimizare profundă a conținutului simplificate cu 'Aspose.Words for Node.js via .NET'. Următorul exemplu demonstrează cum să optimizați conținutul unui JPG fișier în JavaScript:

Exemplu de cod în JavaScript pentru a comprima JPG fișiere
Încărcați un fișier pe care doriți să îl optimizați/comprimați
Rulați codul
Selectați formatul țintă din listă
50%
npm install @aspose/words
Copie
const aw = require('@aspose/words');

var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)

shape = builder.insertImage("Input.jpg")

var saveOptions = new aw.Saving.ImageSaveOptions(aw.SaveFormat.Jpeg)
saveOptions.jpegQuality = 50
shape.getShapeRenderer().save("Output.jpg", saveOptions)
const aw = require('@aspose/words'); var doc = new aw.Document("Input.jpg"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // Depinde de dezvoltator să aleagă Biblioteca pentru compresia imaginilor. const imageData = shape.getImageData().toStream(); // ... // Comprimați imaginea și setați-o înapoi la formă. shape.getImageData().setImage(compressedImageBuffer); } } var saveOptions = new aw.Saving.PdfSaveOptions() saveOptions.cacheBackgroundGraphics = true doc.save("Output.jpg", saveOptions) const aw = require('@aspose/words'); var doc = new aw.Document("Input.jpg"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // Depinde de dezvoltator să aleagă Biblioteca pentru compresia imaginilor. const imageData = shape.getImageData().toStream(); // ... // Comprimați imaginea și setați-o înapoi la formă. shape.getImageData().setImage(compressedImageBuffer); } } doc.save("Output.jpg") const aw = require('@aspose/words'); var doc = new aw.Document("Input.jpg"); doc.cleanup(); var shapes = doc.getChildNodes(aw.NodeType.Shape, true) for (var shape of shapes) { if (shape.hasImage()) { // Depinde de dezvoltator să aleagă Biblioteca pentru compresia imaginilor. const imageData = shape.getImageData().toStream(); // ... // Comprimați imaginea și setați-o înapoi la formă. shape.getImageData().setImage(compressedImageBuffer); } } var saveOptions = new aw.Saving.OoxmlSaveOptions() saveOptions.compressionLevel = aw.Saving.CompressionLevel.Maximum doc.save("Output.jpg", saveOptions) const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) shape = builder.insertImage("Input.jpg") var saveOptions = new aw.Saving.ImageSaveOptions(aw.SaveFormat.Jpeg) saveOptions.jpegQuality = 50 shape.getShapeRenderer().save("Output.jpg", saveOptions)
Rulați codul

Cum se comprimă JPG în JavaScript

  1. Instalați Aspose.Words for Node.js via .NET.
  2. Adăugați o referință la bibliotecă (importați biblioteca) în proiectul dvs. JavaScript.
  3. Deschideți fișierul sursă JPG în JavaScript.
  4. Comprimați JPG fără a pierde calitatea.
  5. Apelați metoda Document.cleanup(). Codul rezultat poate varia în funcție de formatul fișierului de ieșire.
  6. Obțineți rezultatul comprimat ca JPG fișier.

JavaScript bibliotecă pentru a optimiza și comprima JPG fișiere

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.

Alte optimizări de format de fișier acceptate

Puteți optimiza fișiere în multe alte formate de fișiere:

5%

Abonați-vă la Actualizări de produse Aspose

Primiți buletine informative lunare și oferte livrate direct în căsuța dvs. poștală.

© Aspose Pty Ltd 2001-2024. Toate drepturile rezervate.