All Projects → Intervention → Image

Intervention / Image

Licence: mit
PHP Image Manipulation

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Image

Zimg Host
Simple image hosting service
Stars: ✭ 62 (-99.5%)
Mutual labels:  image, gd
Thumbnail
Thumbnail for a given video using FFMpeg
Stars: ✭ 96 (-99.22%)
Mutual labels:  laravel, watermark
Nova Advanced Image Field
🌄📐 A Laravel Nova advanced image field with cropping and resizing using Cropper.js and Intervention Image
Stars: ✭ 67 (-99.46%)
Mutual labels:  laravel, image
Watimage
🖼 PHP image manipulation class
Stars: ✭ 25 (-99.8%)
Mutual labels:  image, gd
Mergi
go library for image programming (merge, crop, resize, watermark, animate, ease, transit)
Stars: ✭ 127 (-98.97%)
Mutual labels:  image, watermark
Image
Joomla Framework Image Package
Stars: ✭ 9 (-99.93%)
Mutual labels:  image, gd
Img
🖼Image hosting powered by laravel
Stars: ✭ 92 (-99.25%)
Mutual labels:  laravel, image
Easywatermark
🔒 🖼 Securely, easily add a watermark to your sensitive photos. 安全、简单地为你的敏感照片添加水印,防止被小人泄露、利用
Stars: ✭ 519 (-95.78%)
Mutual labels:  image, watermark
Lilliput
Resize images and animated GIFs in Go
Stars: ✭ 1,690 (-86.26%)
Mutual labels:  image, thumbnail
Bimg
Go package for fast high-level image processing powered by libvips C library
Stars: ✭ 1,394 (-88.66%)
Mutual labels:  image, watermark
Laravel Proximage
🌐 Laravel Proximage is a handy package for proxying images.
Stars: ✭ 156 (-98.73%)
Mutual labels:  laravel, image
Doctron
Docker-powered html convert to pdf(html2pdf), html to image(html2image like jpeg,png),which using chrome(golang) kernel, add watermarks to pdf, convert pdf to images etc.
Stars: ✭ 141 (-98.85%)
Mutual labels:  image, watermark
Image
Manipulate images with an expressive API
Stars: ✭ 781 (-93.65%)
Mutual labels:  image, gd
Laravel Image Optimizer
Optimize images in your Laravel app
Stars: ✭ 873 (-92.9%)
Mutual labels:  laravel, image
Laravel Imageup
Auto Image & file upload, resize and crop for Laravel eloquent model using Intervention image
Stars: ✭ 646 (-94.75%)
Mutual labels:  laravel, image
Laravel Imageupload
Upload image using Laravel's build in function and resize it automatically.
Stars: ✭ 73 (-99.41%)
Mutual labels:  laravel, image
Blind Watermark
Watermark added to the frequency domain by Fourier transform
Stars: ✭ 344 (-97.2%)
Mutual labels:  image, watermark
Imaginary
Fast, simple, scalable, Docker-ready HTTP microservice for high-level image processing
Stars: ✭ 4,107 (-66.6%)
Mutual labels:  image, watermark
Lipo
👄 Free image manipulation API service built on top of Sharp (an alternative to Jimp, Graphics Magic, Image Magick, and PhantomJS)
Stars: ✭ 101 (-99.18%)
Mutual labels:  manipulation, image
Hrconvert2
A self-hosted, drag-and-drop, & nosql file conversion server that supports 62x file formats.
Stars: ✭ 132 (-98.93%)
Mutual labels:  manipulation, image

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].