1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 20:28:21 +01:00
Oliver Vogel 606228bc76 fix
2014-04-29 16:50:43 +02:00
2014-03-29 19:10:53 +01:00
fix
2014-04-29 16:50:43 +02:00
2014-04-16 20:03:22 +02:00
2013-01-27 12:31:46 +01:00
2013-03-28 13:27:12 +01:00
2014-03-29 12:10:32 +01:00
2013-03-10 20:00:40 +01:00
2013-09-24 16:31:35 +02:00
2014-04-18 17:54:35 +02:00

Intervention Image

Intervention Image is a PHP image handling and manipulation library based on the PHP GD library. The package includes ServiceProviders and Facades for easy Laravel 4 integration.

Build Status

Requirements

  • PHP >=5.3
  • GD >=2.0

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.

License

Intervention Image is licensed under the MIT License.

Copyright 2013 Oliver Vogel

Description
No description provided
Readme 11 MiB
Languages
PHP 100%