LaravelPackages.net
Acme Inc.
Toggle sidebar
omt/image_helper

Image handling and manipulation library with support for Laravel integration

56
0
2.5.1
About omt/image_helper

omt/image_helper is a Laravel package for image handling and manipulation library with support for laravel integration. It currently has 0 GitHub stars and 56 downloads on Packagist (latest version 2.5.1). Install it with composer require omt/image_helper. Discover more Laravel packages by omt or browse all Laravel packages to compare alternatives.

Last updated

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');

Star History Chart