salve tutti io avrei un problemone
ho installato php5-imagick e vorrei usare un codice del genere (prelevato perlo piu dal sito php.net)
sbaglio io devo installare altro per far funzionare queste librerie? mi da errore mi diceCodice PHP:
<?php
header('Content-type: image/jpeg');
$image = new Imagick('image.jpg');
// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 0);
echo $image;
Call to undefined function thumbnailImage
che posso fare?