I can produce a PDF with one image using Intervention Image and imagemagick but cannot find a way to combine images and output them as one multiple page PDF?
$url = Image::make('https://res.cloudinary.com/image.png')->encode('png');
$im=new \Imagick();
$im->readImageBlob($url);
$im->setImageFormat('pdf');
$im->writeImage('my.pdf');
I would prefer not to save the images as files rather use the variables they are stored in
this works for me