Convert PDF to high quality JPG using PHP and ImageMagick
问题 I'm tearing my hair out. I have a 300 DPI PDF that I want to turn into a 300 DPI JPG that's 2550x3300. I am told ImageMagick can do this, so I get ImageMagick to work, but it only returns a JPG that is sized about 1/5 the original PDF size. It's not the source image--I've done it with several high quality PDFs and they all have the same problem. After scouring StackOverflow for ideas, this is what I came up with to use: $im = new imagick($srcimg); $im->setImageResolution(2550,3300); $im-