2017 © Pedro Peláez
 

library image

图像处理

image

lbao/image

图像处理

  • Wednesday, December 6, 2017
  • by smsjs
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Intervention Image

Intervention Image is a PHP image handling and manipulation library providing an easier and expressive way to create, edit, and compose images. The package includes ServiceProviders and Facades for easy Laravel integration., (*1)

Latest Version Build Status Monthly Downloads, (*2)

Requirements

  • PHP >=5.4
  • Fileinfo Extension

Supported Image Libraries

  • GD Library (>=2.0)
  • Imagick PHP extension (>=6.5.7)

Getting started

Code Examples

// open an image file
$img = Image::make('public/foo.jpg');

// resize image instance
$img->resize(320, 240);

// insert a watermark
$img->insert('public/watermark.png');

// save image in desired format
$img->save('public/bar.jpg');

Refer to the official documentation to learn more about Intervention Image., (*3)

Contributing

Contributions to the Intervention Image library are welcome. Please note the following guidelines before submiting your pull request., (*4)

  • Follow PSR-2 coding standards.
  • Write tests for new functions and added features
  • API calls should work consistently with both GD and Imagick drivers

License

Intervention Image is licensed under the MIT License., (*5)

Copyright 2017 Oliver Vogel, (*6)

The Versions

06/12 2017

dev-master

9999999-dev

图像处理

  Sources   Download

GPL-3.0+

The Requires

  • php >=5.3.3

 

by lbao

image