1
0
mirror of https://github.com/Intervention/image.git synced 2025-02-06 22:00:38 +01:00
Oliver Vogel 45e1be89c5 Merge pull request #220 from jwpage/faster_alpha2gd
Rewrite Gd\Color::alpha2gd for improved performance
2014-08-31 11:30:21 +02:00
2014-05-25 18:31:23 +02:00
2014-07-09 12:33:06 +02:00
2014-08-28 09:37:53 +10:00
v2
2014-05-10 20:35:01 +02:00
v2
2014-05-10 20:35:01 +02:00

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 4 integration.

Build Status

Requirements

  • PHP >=5.3
  • Fileinfo Extension

Supported Image Libraries

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

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 documentation to learn more about Intervention Image.

Contributing

Contributions to the Intervention Image library are welcome. Please note the following guidelines before submiting your pull request.

  • Follow PSR-0, PSR-1 and 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.

Copyright 2014 Oliver Vogel

Description
No description provided
Readme 11 MiB
Languages
PHP 100%