4

回転中の PNG で PNG の透明度を取得する際に大きな問題が発生しています。

$filename = 'bird_up.png';
$source = imagecreatefrompng($filename) or die('Error opening file '.$filename);
imagealphablending($source, false);
imagesavealpha($source, true);
$rotation = imagerotate($source, $degrees, imageColorAllocateAlpha($source, 0, 0, 0, 127));
imagealphablending($source, false);
imagesavealpha($source, true);
header('Content-type: image/png');
imagepng($rotation);
imagedestroy($source);
imagedestroy($rotation);
4

2 に答える 2

13

以下にコメント付きの作業バージョンを追加しました

<?php
// this file writes the image into the http response,
// so we cant have any output other than headers and the file data
ob_start();

$filename       = 'tibia.png';
$degrees        = 45;

// open the image file
$im = imagecreatefrompng( $filename );

// create a transparent "color" for the areas which will be new after rotation
// r=0,b=0,g=0 ( black ), 127 = 100% transparency - we choose "invisible black"
$transparency = imagecolorallocatealpha( $im,0,0,0,127 );

// rotate, last parameter preserves alpha when true
$rotated = imagerotate( $im, $degrees, $transparency, 1);

// disable blendmode, we want real transparency
imagealphablending( $rotated, false );
// set the flag to save full alpha channel information
imagesavealpha( $rotated, true );

// now we want to start our output
ob_end_clean();
// we send image/png
header( 'Content-Type: image/png' );
imagepng( $rotated );
// clean up the garbage
imagedestroy( $im );
imagedestroy( $rotated );

ウィキペディアのデモの元の画像

ウィキペディアの原文です

-45 度回転、デモ用に不透明度が ~50% の新しい領域

$transparency = imagecolorallocatealpha( $im,0,0,0,55 );

45 度回転し、デモ用に不透明度が ~50% の新しい領域

-45 度回転、不透明度 100% の新しい領域

$transparency = imagecolorallocatealpha( $im,0,0,0,127 );

45 度回転、不透明度 100% の新しい領域

于 2012-11-24T11:15:33.563 に答える