Voting

: six plus zero?
(Example: nine)

The Note You're Voting On

Anonymous
18 years ago
If you want to convert from TIFF to JPG you can use ImageMagick if it is installed in your server.

<?php
$exec
= 'convert /path/to/file.tiff /path/to/file.jpg 2>&1';
@
exec($exec, $exec_output, $exec_retval);

//possible error
print_r($exec_output)
?>

<< Back to user notes page

To Top