Pues antes de eso tengo lo típico claro:
Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
Acabo de hacer otro ejemplo con un script que me he encontrado, lo que copiado y pegado tal cual:
Código PHP:
<?php
/* Read the image into the object */
$im = new Imagick( 'strawberry.png' );
/* Make the image a little smaller, maintain aspect ratio */
$im->thumbnailImage( 200, null );
/* Round corners, web 2.0! */
$im->roundCorners( 5, 5 );
/* Clone the current object */
$shadow = $im->clone();
/* Set image background color to black
(this is the color of the shadow) */
$shadow->setImageBackgroundColor( new ImagickPixel( 'black' ) );
/* Create the shadow */
$shadow->shadowImage( 80, 3, 5, 5 );
/* Imagick::shadowImage only creates the shadow.
That is why the original image is composited over it */
$shadow->compositeImage( $im, Imagick::COMPOSITE_OVER, 0, 0 );
/* Display the image */
header( "Content-Type: image/png" );
echo $shadow;
?>
Lo ejecuto tal cual desde el mismo fichero, sin nada antes ni despues. Obtengo el mismo error con los "headers" y la imagen se ve una vez más como ristras de caracteres...