我希望使用PHP为图像上的文本添加阴影。
我知道如何向图像添加文本以及某些库如何允许您添加块阴影,但我看不到任何允许您添加淡化阴影的文件。
这可能吗?
答案 0 :(得分:12)
你想要的是Imagick :: shadowImage(float $ opacity,float $ sigma,int $ x,int $ y)
这是一个例子,我在一些文字上放了一个阴影,然后将它叠加在背景图像上......
$background_layer = new Imagick('poster_pic_01.jpg'); # background image
$text_layer = new Imagick('transparent400.png'); # empty transparent png of the same size
$text_layer->annotateImage( $ImagickDraw, $pad_left, $pad_top, 0, "Your text here" );
/* create drop shadow on it's own layer */
$shadow_layer = $text_layer->clone();
$shadow_layer->setImageBackgroundColor( new ImagickPixel( 'black' ) );
$shadow_layer->shadowImage( 75, 5, 5, 5 );
/* composite original text_layer onto shadow_layer */
$shadow_layer->compositeImage( $text_layer, Imagick::COMPOSITE_OVER, 0, 0 );
/* composite shadow_layer (which now has text AND the shadow) onto image_layer */
$background_layer->compositeImage( $shadow_layer, Imagick::COMPOSITE_OVER, 0, 0 );
希望这有帮助,
罗杰
答案 1 :(得分:2)
GD不能开箱即用。如果可以,请使用ImageMagick。关于如何形成阴影的示例here。