これは私が思いついた解決策です(そのサイズの完全に透明な画像):
<?php
// Image size
$imageWidth = is_numeric( $_GET[ 'w' ] ) ? $_GET[ 'w' ] : 0;
$imageHeight = is_numeric( $_GET[ 'h' ] ) ? $_GET[ 'h' ] : 0;
// Header
header ('Content-Type: image/png');
// Create Image
$image = imagecreatetruecolor( $imageWidth, $imageHeight );
imagesavealpha( $image, true );
$color = imagecolorallocatealpha($image, 0, 0, 0, 127);
imagefill($image, 0, 0, $color);
// Ouput
imagepng( $image );
imagedestroy( $image );
?>
画像を色で塗りつぶすこともできます。
<?php
// Image size
$imageWidth = is_numeric( $_GET[ 'w' ] ) ? $_GET[ 'w' ] : 0;
$imageHeight = is_numeric( $_GET[ 'h' ] ) ? $_GET[ 'h' ] : 0;
// Header
header ('Content-Type: image/png');
// Create Image
$image = imagecreatetruecolor( $imageWidth, $imageHeight );
imagesavealpha( $image, true );
$color = imagecolorallocatealpha($image, 180, 180, 180, 0);
imagefill($image, 0, 0, $color);
$text_color = imagecolorallocatealpha( $image, 255, 255, 255, 50 );
imagestring($image, 1, 5, 5, $imageWidth . ' x ' . $imageHeight, $text_color);
// Ouput
imagepng( $image );
imagedestroy( $image );
?>
使用法は次のとおりです。
<img src="placeholder.php?w=350&h=250" alt="" />