1
0
mirror of https://github.com/Intervention/image.git synced 2025-02-24 14:12:40 +01:00
Jair Cueva Júnior d6ad5dbc3a
Add support to equal sign - '=' - on URL
Updated filename regex pattern to allow the equal sign as being part of the filename portion of the route, otherwise it would fall on 404 error.
2021-06-07 17:14:37 -03:00
2020-11-06 16:12:52 +01:00
2019-06-10 11:07:42 +03:00
2015-12-21 09:40:41 +01:00
2017-10-26 18:39:02 +03:00
2019-05-31 12:32:08 +02:00
2017-12-11 15:05:38 +01:00
v2
2014-05-10 20:35:01 +02:00
v2
2014-05-10 20:35:01 +02:00
2019-10-04 20:05:18 +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 integration.

Latest Version Build Status Monthly Downloads

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.

Contributing

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

  • 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.

Copyright 2017 Oliver Vogel

Description
No description provided
Readme 11 MiB
Languages
PHP 100%