PHP 8.5.0 Alpha 4 available for testing

Voting

: min(two, eight)?
(Example: nine)

The Note You're Voting On

Brandon
15 years ago
# How to combine a multi-page pdf file into a single long image:

<?php
$im1
= new Imagick();
$im1->readImage('multi-page-pdf.pdf');
$im1->resetIterator();
# Combine multiple images into one, stacked vertically.
$ima = $im1->appendImages(true);
$ima->setImageFormat("png");
header("Content-Type: image/png");
echo
$ima;
?>

<< Back to user notes page

To Top