我发现这个PHP版本似乎是我需要的结果。
<?php
try
{
/*** a new Imagick object ***/
$im = new Imagick('images/spork.jpg');
/*** set the image format to png ***/
$im->setImageFormat('png');
/*** an object for the drop shadow ***/
$shadow = $im->clone();
/*** an object for the drop shadow ***/
$drop_shadow = $im->clone();
/*** set shadow color to black ***/
$drop_shadow->setImageBackgroundColor( new ImagickPixel( 'black' ) );
/*** Create the shadow ***/
$drop_shadow->shadowImage( 80, 3, 5, 5 );
/*** stick them together ***/
$drop_shadow->compositeImage( $im, Imagick::COMPOSITE_OVER, 0, 0 );
/*** write image to disk ***/
$drop_shadow->writeImage( '/tmp/dropshadow.png' );
echo 'Wrote Image';
}
catch(Exception $e)
{
echo $e->getMessasge();
}
?>
(试图发布图片,不会让我。) 示例:spork with drop shadow
现在,我已经在Perl(使用另一个图像)中实现了我需要的结果:
#!/usr/bin/perl -w
use strict;
my imageurl='http://nonprofit.org/images/someimage.jpg';
my $contact='email@email.org';
system("montage $imageurl -geometry 476x356 -background '#F7F7F7' -quality 90 -fill '#ffffff' -shadow \ -stroke '#000C' -strokewidth 2 -gravity SouthWest -font Candice -pointsize 14 -annotate +2+1 '$contact' \ -stroke none -fill white -gravity SouthWest -font Candice -pointsize 14 -annotate +2+2 '$contact' \ -gravity center $new");
system("montage $new -geometry 480x360 -background '#F7F7F7' -quality 90 -fill '#F7F7F7' $new");
这给了我一个漂亮的阴影宽高比(ed)图像,该图像以480x360的盒子/画布为中心,与页面bgcolor f7f7f7相匹配。
现在,我想在不使用系统方法的情况下这样做。
所以,我试过这个:
#!/usr/bin/perl -w
use Image::Resize;
use Image::Magick;
use strict;
my imageurl='http://nonprofit.org/images/someimage.jpg';
my $contact='email@email.org';
my $ibig = Image::Magick->new;
$ibig->Read("$imageurl");
$ibig->Resize(geometry=>'476x356');
$ibig->Montage(geometry=>'476x356',
background=>'#F7F7F7',
quality=>90,gravity=>'center',
shadow=>80x4+4+4);
#tried shadow=>'true' and '1' and many other variations.
$ibig->Annotate(text=>$contact,
x=>2,y=>1,
font=>'Candice',
pointsize=>14,
stroke=>'#000C',
strokewidth=>2,
gravity=>'SouthWest');
$ibig->Annotate(text=>$contact,
x=>2,y=>2,
font=>'Candice',
pointsize=>14,
fill=>'#ffffff',
stroke=>'none',
gravity=>'SouthWest');
$ibig->Montage(geometry=>'480x360',
background=>'#F7F7F7',
quality=>90,
fill=>'#F7F7F7');
$ibig->Write("$new");
哪个不起作用。注释有效但没有投影,图像通常最终为479x360。
系统方法完美无缺,但我真的想学习如何使用我的Image :: Magick示例。
我花了两天时间研究这个并读人。
当我无法理解时,我来到stackoverflow并总是得到一个解决方案!
提前致谢。
(抱歉格式化问题..我试图清理它。)
答案 0 :(得分:0)