phMagick

码农软件 · 软件分类 · 图形/图像处理 · 2019-09-10 06:42:39

软件介绍

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);
 
?>

本文地址:https://www.codercto.com/soft/d/14263.html

Remote

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》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具