Показать страницуСсылки сюдаODT преобразованиеPDFэкспорт ODT=>PDFНаверх Эта страница только для чтения. Вы можете посмотреть её исходный текст, но не можете его изменить. Сообщите администратору, если считаете, что это неправильно. ====== Уменьшение размера PDF-файлв. ====== [[https://ghostscript.readthedocs.io/en/latest/VectorDevices.html#controls-and-features-specific-to-postscript-and-pdf-input|документация]] Т.е. при вызове gs можно указать опцию -dPDFSETTINGS=configuration, где configuration может быть: * /screen selects low-resolution output similar to the Acrobat Distiller (up to version X) “Screen Optimized” setting. * /ebook selects medium-resolution output similar to the Acrobat Distiller (up to version X) “eBook” setting. * /printer selects output similar to the Acrobat Distiller “Print Optimized” (up to version X) setting. * /prepress selects output similar to Acrobat Distiller “Prepress Optimized” (up to version X) setting. * /default selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file. На этой же странице чуть ниже про [[https://ghostscript.readthedocs.io/en/latest/VectorDevices.html#the-family-of-pdf-and-postscript-output-devices|создание PDF]] Ну и собираем всё вместе: <code Bash> gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.3 -sColorConversionStrategy=UseDeviceIndependentColor -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf </code> user_land/уменьшение_pdf.txt Последнее изменение: 2024-11-06 08:02 — Andrew A. Sabitov