
img2pdf
List of commands for img2pdf:
-
img2pdf:tldr:4a4bf img2pdf: Convert multiple images to a single PDF, each image being on its own page.$ img2pdf ${path-to-image1-jpg} ${path-to-image2-jpg} --output ${filename-pdf}try on your machineexplain this command
-
img2pdf:tldr:79b99 img2pdf: Convert only the first frame of a multi-frame image to PDF.$ img2pdf ${filename-gif} --first-frame-only --output ${filename-pdf}try on your machineexplain this command
-
img2pdf:tldr:f4b36 img2pdf: Convert an image to PDF, and specify metadata for the resulting file.$ img2pdf ${filename-png} --title ${title} --author ${author} --creationdate ${1970-01-31} --keywords ${keyword1 keyword2} --subject ${subject} --output ${filename-pdf}try on your machineexplain this command
-
img2pdf:tldr:fd988 img2pdf: Shrink only larger images to a 10cm by 15cm rectangle inside a 30x20cm page.$ img2pdf ${filename-tiff} --pagesize ${30cm}x${20cm} --imgsize ${10cm}x${15cm} --fit ${shrink} --output ${filename-pdf}try on your machineexplain this command
-
img2pdf:tldr:ff6f4 img2pdf: Auto orient the image, use a page size of A4 in landscape mode, and set a border of 2cm horizontally and 5.1cm vertically.$ img2pdf ${filename-jpg} --auto-orient --pagesize ${A4^T} --border ${2cm}:${5-1cm} --output ${filename-pdf}try on your machineexplain this command