About 217,000 results
Open links in new tab
  1. JPG to PDF Convertor in C# - Stack Overflow

    Oct 29, 2009 · I would like to convert from an image (like jpg or png) to PDF. I've checked out ImageMagickNET, but it is far too complex for my needs. What other .NET solutions or code are …

  2. C# - How to convert an image to a PDF (using a free library)

    Mar 17, 2016 · My question is how to utilise a free (preferably well maintained) PDF library to convert an image into PDF. More specifically I'm using Selenium to test a webpage and part of the requirements …

  3. image - Python - Extract a PDF page as a jpeg - Stack Overflow

    convert_from_path returns a list with all the pages of the pdf converted to .ppm, then define the file name and save the first page defined in image_list[0] as JPEG.

  4. ImageMagick: convert image to PDF with A4 page size and image fit to ...

    I want to convert different image formats (bmp,jpg,gif,png,tiff-incluging multipaged) into a PDF format with A4 page size and with images fit to page (resized if necessary).

  5. How to convert a PDF into JPG with command line in Linux?

    What are fast and reliable ways for converting a PDF into a (single) JPEG using the command line on Linux?

  6. bash - How can I convert a series of images to a PDF from the …

    I have a scanning server I wrote in CGI and Bash. I want to be able to convert a bunch of images (all in one folder) to a PDF from the command line. How can that be done?

  7. Merge multiple JPGs into single PDF in Linux - Stack Overflow

    Apr 8, 2022 · I used the following command to convert and merge all the JPG files in a directory to a single PDF file: convert *.jpg file.pdf The files in the directory are numbered from 1.jpg to 123.jpg. The

  8. Using Ghostscript to convert JPEG to PDF - Stack Overflow

    Nov 26, 2010 · @RobertFleming This does not seem to be true in 2020. I just read viewjpeg.ps and it seems to do a simple byte-copy. It explicitly states "Ghostscript with IJG JPEG v6 or later will decode …

  9. windows - Convert all .jpg images in directory to .pdf | Debugging ...

    Mar 31, 2021 · Every other .jpg file looks exactly the same as the one .jpg I can convert and all of them open without issues. magick identify -verbose foobar.jpg results: I can convert 0.jpg file to .pdf …

  10. python - Create PDF from a list of images - Stack Overflow

    Dec 6, 2014 · This script allows users to convert one or multiple images into a PDF file. It utilizes the FPDF library for PDF generation and Pillow (PIL) for image handling.