Changes

PDF: The Portable Document Format

2,144 bytes added, 23:12, 17 November 2021
/* Linux PDF Tools: pdfcrack */
The following lines were added (+) and removed (-):
=== Linux PDF Tools: tiff2pdf and tiffcp ===The tiff2pdf utility can convert a single tiff file into a pdf document.  For multiple pages it will be necessary to create a multi-page tiff file.  Yes, a single tiff file can contain multiple pages.A 12 page black and white document was scanned into jpeg images.  Although jpeg was not the best choice for black and white documents, this is how it was presented and thus needed to be converted to a pdf.  imagemagick convert produced a large pdf over 6mb that was not optimized for black and white.  This is not referring to compression, as applying jpeg compression or changing the dpi is not the correct way to optimize black and white scanned images.Our fat pdf that was created from jpeg and not optimized for black and white is called: document.pdf  It will be deconstructed back to images, except this time into optimized for black and white tiff images.  A larger multi-page tiff file will then be created from the multiple tiff images.  The single multi-page tiff file will then be converted back into a much smaller optimized pdf document. convert -colorspace rgb -density 300 document.pdf -monochrome document-%03d.tiff tiffcp document-???.tiff multipage.tiff tiff2pdf -o documentfinal.pdf multipage.tiffWhile the original document.pdf is over 6 mb, the documentfinal.pdf is less than 1mb.=== Linux PDF Tools: pdfcrack ===To unlock a password protected PDF file when you do NOT know the password.  PDFCrack is a GNU/Linux tool for recovering passwords and content from PDF-files. It is small, command line driven without external dependencies. pdfcrack -f 2020CrackMe.pdfIf you see the error The specific version is not supported (Standard - 6)Then the version of pdfcrack does not support 256-bit''Other resources, look into John the Ripper to brute force crack a protected PDF.  John the Ripper is a fast password cracker.  Its primary purpose is to detect weak Unix passwords.''===tesseract===* [https://www.moreno.marzolla.name/software/scan-to-pdf/ Creating multi-page PDF documents from scanned images in Linux] - discusses tiff2pdf * [[Create PDF Documents with ImageMagick and Ghostscript]]
Bureaucrat, administrator
16,192
edits