Компьютерные услуги, город Ейск

Г. Ейск, улица Армавирская, дом 45, этаж II, кабинет № 221

Site Tools


wiki:pdf

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
wiki:pdf [2023/09/19 07:19] – created - external edit 127.0.0.1wiki:pdf [2024/10/22 13:42] (current) serw
Line 2: Line 2:
  
 [[wiki:pdfjam|The pdfjam package for manipulating PDF files]]. [[wiki:pdfjam|The pdfjam package for manipulating PDF files]].
 +
 +Страница на моем веб-сайте полиграфии «Ея»: [[https://yeya.ru/wiki:imagemagick|ImageMagick]] Daily Usage.
 +
 +===== Convert a directory of JPEG files to a single PDF document =====
 +
 +<code=bash>
 +convert *.jpg -auto-orient imagemagick.pdf
 +</code>
 +
 +img2pdf - lossless conversion of raster images to pdf
 +
 +<WRAP prewrap>
 +<code=bash>
 +img2pdf --output out.pdf page1.jpg page2.jpg # https://manpages.debian.org/bookworm/img2pdf/img2pdf.1.en.html#EXAMPLES
 +img2pdf --output Untitled.pdf *.jpeg # https://dragonserw.ru/wiki:pdf
 +img2pdf img1.tif --pagesize 107mmx150mm --imgsize 107mmx150mm --fit shrink --output file1.pdf #Пере-сохранение ТИФ в ПДФ с учетом размера бумаги
 +</code>
 +</WRAP>
 +
 +Наиболее часто встречается:
 +
 +<WRAP prewrap>
 +<code=bash>
 +img2pdf --output Untitled.pdf *.jpg # https://dragonserw.ru/wiki:pdf
 +</code>
 +</WRAP>
 +
 +[[https://askubuntu.com/a/246653|AskUbuntu]].
 +
 +Создание ПДФ из директории JPG и последующее OCR.
 +
 +<WRAP prewrap>
 +<code=bash>
 +img2pdf --output Untitled.pdf *.jpg && ocrmypdf -l eng+rus Untitled.pdf 'SerW - OCRmyPDF.pdf' && rm Untitled.pdf # https://dragonserw.ru/wiki:pdf
 +</code>
 +</WRAP>
 +
 +===== Extracting embedded images from a PDF =====
 +
 +<code=bash>
 +pdfimages -all in.pdf /tmp/out # sudo pacman -S poppler
 +</code>
 +
 +Source: [[https://askubuntu.com/questions/150100/extracting-embedded-images-from-a-pdf|AskUbuntu]].
  
 ===== Replace all font glyphs in a PDF by converting them to outline shapes ===== ===== Replace all font glyphs in a PDF by converting them to outline shapes =====
Line 10: Line 54:
 brew install ghostscript brew install ghostscript
 alias gsu = 'gs -o Untitled-with-outlines.pdf -dNoOutputFonts -sDEVICE=pdfwrite Untitled.pdf' alias gsu = 'gs -o Untitled-with-outlines.pdf -dNoOutputFonts -sDEVICE=pdfwrite Untitled.pdf'
-gs -o Untitled-with-outlines.pdf -dNoOutputFonts -sDEVICE=pdfwrite Untitled.pdf+gs -o Untitled_with-outlines.pdf -dNoOutputFonts -sDEVICE=pdfwrite Untitled.pdf
 </code> </code>
  
Line 40: Line 84:
  
 ===== ocrmypdf.readthedocs.io ===== ===== ocrmypdf.readthedocs.io =====
 +
 +Оптическое распознавание английского и русского машинописного текста в отсканированных .pdf-документах. 
  
 <code=bash> <code=bash>
wiki/pdf.1695097181.txt.gz · Last modified: 2023/09/19 07:19 by 127.0.0.1