项目作者: aivazoff

项目描述 :
Image resizing and croping
高级语言: PHP
项目地址: git://github.com/aivazoff/image.git
创建时间: 2017-11-21T07:30:50Z
项目社区:https://github.com/aivazoff/image

开源协议:

下载


Image Resize and Crop

Example

  1. if($normalize = !$cropMode) {
  2. $cropMode = Image::RESIZE_MODE_NORMALIZE;
  3. }
  4. $image = new ImageFromFile($imagePath);
  5. if(!$w) {
  6. $image->resizeByHeight($h, $normalize);
  7. } else if(!$h) {
  8. $image->resizeByWidth($w, $normalize);
  9. } else {
  10. $image->resize($w, $h, $cropMode);
  11. }
  12. $image->output();