- 授权协议: 未知
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://www.francodacosta.com/phmagick
软件介绍
phMagick 是为 PHP 编写的用来调用 ImageMagick 程序进行图像操作的 PHP 类库。
下面是一段使用的代码:
/*
----------- TEXT 1 -----------
*/
fontSize(48)
->font('Arial.ttf')
->color('#464646');
$phMagick = new phMagick('','watermark1.png');
$phMagick->fromString('phMagick Rules',$format);//draw the text!!
/*
----------- TEXT 2 -----------
*/
$format = new phMagickTextObject();
$format->fontSize(18)
->font('Arial.ttf')
->color('#f00')
->background('yellow'); //we can also set up a background color
$phMagick = new phMagick('','watermark2.png');
$phMagick->fromString('\nphMagick Rules\n', $format); //and use line breaks
/*
----------- TEXT 3 -----------
*/
$phMagick = new phMagick('','watermark3.png');
$format = new phMagickTextObject();
$format->fontSize(38)
->font('Arial.ttf')
->color('#464646')
->background('#c0c0c0');
$phMagick->fromString('phMagick Rules', $format);
?>
Remote
Jason Fried、David Heinemeier Hansson / Crown Business / 2013-10-29 / CAD 26.95
The “work from home” phenomenon is thoroughly explored in this illuminating new book from bestselling 37signals founders Fried and Hansson, who point to the surging trend of employees working from hom......一起来看看 《Remote》 这本书的介绍吧!
