PHP code example of baagee / php-image
1. Go to this page and download the library: Download baagee/php-image library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
baagee / php-image example snippets
// 打开图片
public function open($imageFile);
// 获取宽度
public function getWidth();
//获取高度
public function getHeight();
//获取类型
public function getType();
//获取mime
public function getMime();
//获取宽高
public function getSize();
// 裁剪图片
public function crop($w, $h, $x = 0, $y = 0, $width = null, $height = null);
// 保存图片
public function save($imageFile, $type = null, $quality = 80, $interlace = true);
// 缩略图
public function thumb($width, $height, $type = Image::IMAGE_THUMB_SCALE);
// 图片水印
public function water($source, $location = Image::IMAGE_WATER_SOUTHEAST, $alpha = 80);
// 添加文字
public function text($text, $font, $size, $color = '#00000000', $location = Image::IMAGE_WATER_SOUTHEAST, $offset = 0, $angle = 0);
// 旋转图片
public function rotate($degrees, $backgroundColor = ['r' => 0, 'g' => 0, 'b' => 0]);
// 翻转图片
public function flip($mode = Image::IMAGE_FLIP_MODE_Y);
// 创建一个image 使用Gd扩展
$image = new \BaAGee\Image\Image(\BaAGee\Image\Handler\Gd::class);
// 打开一个图片
$image->open('./chosence.jpg');
$mime = $image->getMime();
$size = $image->getSize();
$width = $image->getWidth();
$height = $image->getHeight();
$type = $image->getType();
var_dump($mime, $size, $width, $height, $type);
// 加文字水印并保存
$image->text("WTF!!!", './font.otf', 29, '#00eea1')->save('./images/text.jpg');
// 设置水印位置和旋转角度
$image->open('./wtf.png')->text('WTF!!!', './font.otf', 40,
'#123456', \BaAGee\Image\Image::IMAGE_WATER_SOUTH, 0, 90
)->save('images/text.png');
// 裁剪图片
$image->open('./chosence.jpg')->crop(700, 500)->save('./images/crop.jpg');
// 裁剪突变并且设置文字水印
$image->open('./chosence.jpg')->crop(700, 500)
->text('hello!', './font.otf', 40)
->save('./images/crop_text.jpg');
// 缩略图
$image->open('./chosence.jpg')->thumb(400, 300)->save('./images/thumb.jpg');
// 缩略图并且裁剪并且加文字水印
$image->open('./chosence.jpg')->thumb(400, 300)
->crop(300, 200)
->text("thumb,crop", './font.otf', 40)
->save('./images/thumb_crop_text.jpg');
// 图片水印
$image->open('./chosence.jpg')->water('./wtf.png')->save('./images/water.jpg');
// gif图加文字水印
$image->open('./gif.gif')->text('huaji滑稽', './font.otf', 30)->save('./images/huaji_text.gif');
// gif缩略图
$image->open('./gif.gif')->thumb(200, 200)->save('./images/huaji_thumb.gif');
// gif图片水印
$image->open('./gui.gif')->water('./bm.png')->save('./images/gui_water.gif');
// 翻转
$image->open('./thumb.jpg')->flip()->save('./images/thumb_flip_y.jpg');
// x轴翻转
$image->open('./thumb.jpg')->flip(\BaAGee\Image\Image::IMAGE_FLIP_MODE_X)
->save('./images/thumb_flip_x.jpg');
// 翻转并缩略
$image->open('./thumb.jpg')->flip()
->thumb(200, 150)
->save('./images/thumb_flip_thumb_y.jpg');
//翻转并缩略
$image->open('./gui.gif')->flip()->thumb(100, 100)->save('./images/gui_flip.gif');
//旋转45度
$image->open('./thumb.jpg')->rotate(45, [
'r' => 200, 'g' => 90, 'b' => 100
])->save('./images/thumb_rotate_45.jpg');
// 旋转后背景加颜色
$image->open('./wtf.png')->rotate(45, [
'r' => 200, 'g' => 90, 'b' => 100
])->save('./images/wtf_rotate_c_45.png');
$image->open('./wtf.png')->rotate(45)->save('./images/wtf_rotate_60.png');
$image->open('./wtf.png')->rotate(45)
->crop(200, 200, 300, 300)
->save('./images/wtf_rotate_crop_45.png');
// 旋转并裁剪
$image->open('./wtf.png')->rotate(45, [
'r' => 200, 'g' => 90, 'b' => 100
])->crop(400, 400, 10, 0, 200, 200)
->save('./images/wtf_c_rotate_crop_45.png');
$image->open('./gui.gif')->rotate(45)->save('./images/gui_rotate_45.gif');
echo 'over' . PHP_EOL;
// 创建一个image 使用imagick扩展
$image = new \BaAGee\Image\Image(\BaAGee\Image\Handler\Imagick::class);
// 打开一个图片
$image->open('./chosence.jpg');
$mime = $image->getMime();
$size = $image->getSize();
$width = $image->getWidth();
$height = $image->getHeight();
$type = $image->getType();
var_dump($mime, $size, $width, $height, $type);
// 加文字水印并保存
$image->text("WTF!!!", './font.otf', 29, '#00eea1')->save('./images/imagick/text.jpg');
// 设置水印位置和旋转角度
$image->open('./wtf.png')->text('WTF!!!', './font.otf', 40,
'#123456', \BaAGee\Image\Image::IMAGE_WATER_SOUTH, 0, 90
)->save('images/imagick/text.png');
// 裁剪图片
$image->open('./chosence.jpg')->crop(700, 500)->save('./images/imagick/crop.jpg');
// 裁剪突变并且设置文字水印
$image->open('./chosence.jpg')->crop(700, 500)
->text('hello!', './font.otf', 40)
->save('./images/imagick/crop_text.jpg');
// 缩略图
$image->open('./chosence.jpg')->thumb(400, 300)->save('./images/imagick/thumb.jpg');
// 缩略图并且裁剪并且加文字水印
$image->open('./chosence.jpg')->thumb(400, 300)
->crop(300, 200)
->text("thumb,crop", './font.otf', 40)
->save('./images/imagick/thumb_crop_text.jpg');
// 图片水印
$image->open('./chosence.jpg')->water('./wtf.png')->save('./images/imagick/water.jpg');
// gif图加文字水印
$image->open('./gif.gif')->text('huaji滑稽', './font.otf', 30)->save('./images/imagick/huaji_text.gif');
// gif缩略图
$image->open('./gif.gif')->thumb(200, 200)->save('./images/imagick/huaji_thumb.gif');
// gif图片水印
$image->open('./gui.gif')->water('./bm.png')->save('./images/imagick/gui_water.gif');
// 翻转
$image->open('./thumb.jpg')->flip()->save('./images/thumb_flip_y.jpg');
// x轴翻转
$image->open('./thumb.jpg')->flip(\BaAGee\Image\Image::IMAGE_FLIP_MODE_X)
->save('./images/thumb_flip_x.jpg');
// 翻转并缩略
$image->open('./thumb.jpg')->flip()
->thumb(200, 150)
->save('./images/thumb_flip_thumb_y.jpg');
//翻转并缩略
$image->open('./gui.gif')->flip()->thumb(100, 100)->save('./images/gui_flip.gif');
//翻转加水印
$image->open('./thumb.jpg')->flip()
->text("WHAT?!", './font.otf', 30)
->save('./images/thumb_flip_text_y.jpg');
//旋转45度
$image->open('./thumb.jpg')->rotate(45, [
'r' => 200, 'g' => 190, 'b' => 100
])->save('./images/thumb_rotate_45.jpg');
// die;
// 旋转后背景加颜色
$image->open('./wtf.png')->rotate(45, [
'r' => 200, 'g' => 90, 'b' => 100, 'a' => 1.0
])->save('./images/wtf_rotate_c_45_1.png');
$image->open('./wtf.png')->rotate(45, [
'r' => 200, 'g' => 90, 'b' => 100, 'a' => 0.5
])->save('./images/wtf_rotate_c_45_.5.png');
$image->open('./wtf.png')->rotate(45)->save('./images/wtf_rotate_60.png');
$image->open('./wtf.png')->rotate(45)
->crop(200, 200, 300, 300)
->save('./images/wtf_rotate_crop_45.png');
// 旋转图片并裁剪
$image->open('./wtf.png')->rotate(45, [
'r' => 200, 'g' => 90, 'b' => 100, 'a' => 0.5
])->crop(400, 400, 10, 0, 200, 200)
->save('./images/wtf_c_rotate_crop_45.png');
echo 'over' . PHP_EOL;