Opracuj oprogramowanie do przetwarzania TIFF w Node.js przy użyciu TIFF Optimization API. To potężne rozwiązanie Node.js pomaga bez wysiłku zoptymalizować i zmniejszyć rozmiar plików TIFF. Przetestuj możliwości kompresji TIFF online za darmo!
Zmniejsz duże TIFF pliki bez utraty jakości. Usuń niepotrzebne i nieużywane dane. Zmniejsz rozmiar TIFF pliku w kodzie. JavaScript biblioteka zapewnia programistom zintegrowany interfejs API do optymalizacji zawartości TIFF.
JavaScript biblioteka jest samodzielnym rozwiązaniem i nie wymaga instalowania żadnego oprogramowania firm trzecich.
Bezstratna kompresja i głęboka optymalizacja treści są łatwe dzięki 'Aspose.Words for Node.js via .NET'. Poniższy przykład pokazuje, jak zoptymalizować zawartość TIFF pliku w JavaScript:
npm install @aspose/words
Kopiuj
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.tiff")
var saveOptions = new aw.Saving.ImageSaveOptions(aw.SaveFormat.Tiff)
saveOptions.tiffCompression = aw.Saving.TiffCompression.Lzw
shape.getShapeRenderer().save("Output.tiff", saveOptions)
const aw = require('@aspose/words');
var doc = new aw.Document("Input.tiff");
doc.cleanup();
var shapes = doc.getChildNodes(aw.NodeType.Shape, true)
for (var shape of shapes) {
if (shape.hasImage()) {
// Wybór biblioteki do kompresji obrazu zależy od programisty.
const imageData = shape.getImageData().toStream();
// ...
// Skompresuj obraz i ustaw go z powrotem do kształtu.
shape.getImageData().setImage(compressedImageBuffer);
}
}
var saveOptions = new aw.Saving.PdfSaveOptions()
saveOptions.cacheBackgroundGraphics = true
doc.save("Output.tiff", saveOptions)
const aw = require('@aspose/words');
var doc = new aw.Document("Input.tiff");
doc.cleanup();
var shapes = doc.getChildNodes(aw.NodeType.Shape, true)
for (var shape of shapes) {
if (shape.hasImage()) {
// Wybór biblioteki do kompresji obrazu zależy od programisty.
const imageData = shape.getImageData().toStream();
// ...
// Skompresuj obraz i ustaw go z powrotem do kształtu.
shape.getImageData().setImage(compressedImageBuffer);
}
}
doc.save("Output.tiff")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.tiff");
doc.cleanup();
var shapes = doc.getChildNodes(aw.NodeType.Shape, true)
for (var shape of shapes) {
if (shape.hasImage()) {
// Wybór biblioteki do kompresji obrazu zależy od programisty.
const imageData = shape.getImageData().toStream();
// ...
// Skompresuj obraz i ustaw go z powrotem do kształtu.
shape.getImageData().setImage(compressedImageBuffer);
}
}
var saveOptions = new aw.Saving.OoxmlSaveOptions()
saveOptions.compressionLevel = aw.Saving.CompressionLevel.Maximum
doc.save("Output.tiff", saveOptions)
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.tiff")
var saveOptions = new aw.Saving.ImageSaveOptions(aw.SaveFormat.Tiff)
saveOptions.tiffCompression = aw.Saving.TiffCompression.Lzw
shape.getShapeRenderer().save("Output.tiff", saveOptions)
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.
Możesz optymalizować pliki w wielu innych formatach plików: