2021-12-07 11:00:06 +00:00
|
|
|
# Intervention Image
|
2023-12-28 20:26:04 +01:00
|
|
|
## PHP Image Processing
|
2021-12-07 11:00:06 +00:00
|
|
|
|
|
|
|
[![Latest Version](https://img.shields.io/packagist/v/intervention/image.svg)](https://packagist.org/packages/intervention/image)
|
2022-07-05 19:54:11 +02:00
|
|
|
[![Build Status](https://github.com/Intervention/image/actions/workflows/run-tests.yml/badge.svg)](https://github.com/Intervention/image/actions)
|
2021-12-07 11:00:06 +00:00
|
|
|
[![Monthly Downloads](https://img.shields.io/packagist/dm/intervention/image.svg)](https://packagist.org/packages/intervention/image/stats)
|
|
|
|
|
2023-12-28 20:26:04 +01:00
|
|
|
Intervention Image is a **PHP image processing library** that provides a simple
|
|
|
|
and expressive way to create, edit, and compose images. It features a unified
|
|
|
|
API for the two most popular image manipulation extensions. You can choose
|
|
|
|
between the GD library or Imagick as the base layer for all operations.
|
2021-12-07 11:00:06 +00:00
|
|
|
|
2023-12-28 18:20:45 +01:00
|
|
|
- Simple interface for common image editing tasks
|
2024-03-23 08:55:46 +01:00
|
|
|
- Interchangeable driver architecture
|
2021-12-07 11:00:06 +00:00
|
|
|
- Support for animated images
|
2022-07-09 17:58:26 +02:00
|
|
|
- Framework-agnostic
|
2021-12-07 11:00:06 +00:00
|
|
|
- PSR-12 compliant
|
|
|
|
|
2023-11-20 14:21:40 +01:00
|
|
|
## Installation
|
|
|
|
|
2024-01-14 10:15:30 +01:00
|
|
|
You can easily install this library using [Composer](https://getcomposer.org).
|
2023-12-28 18:20:45 +01:00
|
|
|
Just request the package with the following command:
|
2023-12-01 14:55:20 +01:00
|
|
|
|
2023-11-20 14:21:40 +01:00
|
|
|
```bash
|
|
|
|
composer require intervention/image
|
|
|
|
```
|
|
|
|
|
2024-03-02 16:44:52 +01:00
|
|
|
## Getting Started
|
2023-11-20 14:21:40 +01:00
|
|
|
|
|
|
|
Learn the [basics](https://image.intervention.io/v3/basics/instantiation/) on
|
|
|
|
how to use Intervention Image and more with the [official
|
|
|
|
documentation](https://image.intervention.io/v3/).
|
|
|
|
|
2021-12-07 11:00:06 +00:00
|
|
|
## Code Examples
|
|
|
|
|
|
|
|
```php
|
2023-12-11 14:36:52 +01:00
|
|
|
use Intervention\Image\ImageManager;
|
|
|
|
|
2021-12-07 11:00:06 +00:00
|
|
|
// create image manager with desired driver
|
2023-11-27 19:41:48 +01:00
|
|
|
$manager = new ImageManager(
|
|
|
|
new Intervention\Image\Drivers\Gd\Driver()
|
|
|
|
);
|
2021-12-07 11:00:06 +00:00
|
|
|
|
|
|
|
// open an image file
|
2023-10-01 09:59:05 +02:00
|
|
|
$image = $manager->read('images/example.gif');
|
2021-12-07 11:00:06 +00:00
|
|
|
|
|
|
|
// resize image instance
|
2023-09-29 17:06:31 +02:00
|
|
|
$image->resize(height: 300);
|
2021-12-07 11:00:06 +00:00
|
|
|
|
|
|
|
// insert a watermark
|
|
|
|
$image->place('images/watermark.png');
|
|
|
|
|
|
|
|
// encode edited image
|
|
|
|
$encoded = $image->toJpg();
|
|
|
|
|
|
|
|
// save encoded image
|
|
|
|
$encoded->save('images/example.jpg');
|
|
|
|
```
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
2023-09-29 17:06:31 +02:00
|
|
|
- PHP >= 8.1
|
2021-12-07 11:00:06 +00:00
|
|
|
|
|
|
|
## Supported Image Libraries
|
|
|
|
|
|
|
|
- GD Library
|
|
|
|
- Imagick PHP extension
|
|
|
|
|
2023-12-08 19:13:42 +01:00
|
|
|
## Security
|
|
|
|
|
|
|
|
If you discover any security related issues, please email oliver@intervention.io directly.
|
|
|
|
|
2024-03-13 17:26:15 +01:00
|
|
|
## Authors
|
|
|
|
|
|
|
|
This library is developed and maintained by [Oliver Vogel](https://intervention.io)
|
2021-12-07 11:00:06 +00:00
|
|
|
|
2024-03-13 17:26:15 +01:00
|
|
|
Thanks to the community of [contributors](https://github.com/Intervention/image/graphs/contributors) who have helped to improve this project.
|
|
|
|
|
|
|
|
## License
|
2021-12-07 11:00:06 +00:00
|
|
|
|
2024-03-13 17:26:15 +01:00
|
|
|
Intervention Image is licensed under the [MIT License](LICENSE).
|