• Stars
    star
    103
  • Rank 332,238 (Top 7 %)
  • Language
    PHP
  • Created over 12 years ago
  • Updated almost 12 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

PHP library for working with ImageMagick

Instafilter

Replicate Instragram-style filters in PHP. Translates photoshop functions to PHP.

Installation

The tmp directory must be writable.

Usage

Fork and pull request any useful changes you make.

\Instafilter\Image::load('kittens.png')
	->resize(200, 200)
	->apply_filter(new Instafilter\Filter\Earlybird())
	->save('new.jpg');

n.b. applying the filter is quite slow; You'll get a significant performance gain by resizing before applying the filter.

If you don't use an autoloader, you'll need to load in the classes:

require_once('classes/Image.php');
require_once('classes/Filter.php');
require_once('classes/Filter/Earlybird.php');
require_once('classes/Filter/Inkwell.php');

Todo

  • Add more filters
  • (Somehow) Improve performance
  • Improve interface
  • Implement more photoshop functions in imagemagick
    • Implement 'curves' properly by using polynomial regression to get the coefficients needed for imagick's FX function
  • Abstract and decouple from Image class
  • Make composer/packagist compatible

Author

Rob McCann
http://robmccann.co.uk

Thanks

More Repositories

1

Laravel-Youtube

A Laravel package to upload videos to a YouTube channel
PHP
93
star
2

Laravel-Blog

A simple blog package for Laravel 4
PHP
74
star
3

Laravel-Solarium

Laravel Framework package for using Solarium
PHP
28
star
4

Laravel-Jobs

A Laravel 4 package for adding jobs listings to a website
PHP
23
star
5

Laravel-Comments

A Laravel 4 package for adding commenting to a website
PHP
20
star
6

Laravel-Categories

A Laravel 4 package for adding one or more types of category hierarchies to a website
PHP
16
star
7

Laravel-Pages

A Laravel 4 package for adding simple pages to a website with banner image, heading, main image or YouTube video and body content.
PHP
15
star
8

Laravel-Contact-Form

A Laravel 4 package for adding a simple contact form to a website
PHP
14
star
9

Laravel-Navigation

A Laravel 4 package for adding multiple, database driven, menus to a site
PHP
14
star
10

Laravel-Newsletter-Signup

A Laravel 4 Package for adding newsletter signup (and unsubscribe) functionality to a web site
PHP
11
star
11

Laravel-Food

A Laravel 4 Package for websites for manufacturers of food based products, with multiple product categories, products, recipes and stockists
PHP
11
star
12

Laravel-Events

A Laravel 4 package to add events listings to a site
PHP
8
star
13

Laravel-Places

A Laravel 4 package to add place listings to a site, e.g. bars, restaurants or hotels
PHP
6
star
14

Laravel-Testimonials

A Laravel 4 package for adding testimonials to a website
PHP
6
star
15

Laravel-Simple-Faqs

A Laravel 4 package to add simple database driven FAQs to a site
PHP
6
star
16

Laravel-Agegate

A Laravel 4 package for adding an age gate to a site
PHP
5
star
17

Laravel-Panels

A Laravel 4 package for adding multiple types of widgets like carousels, accordions and tabsets to a website
PHP
4
star
18

Laravel-Downloads

A Laravel 4 package for adding content managed 'downloads' to a site
PHP
3
star
19

Laravel-Mobile-Facebook-App

A Laravel Filter for Facebook Apps that need to work on mobile too.
PHP
3
star
20

Laravel-Poll

Laravel Poll Module with AJAX form handling
PHP
3
star
21

Laravel-Images

A Laravel 4 package for uploading images to a website
PHP
3
star
22

Laravel-Competitions

A Laravel 4 package for adding competitions to a website
PHP
2
star
23

CakePHP-ContinuousId-Behavior

Behavior to allow having uuid primary keys and an auto_increment field at the same time
1
star
24

MySQL-Reconnect

A PDO wrapper that reconnects automatically and re-issues queries on receiving MySQL server timeout errors
PHP
1
star
25

Laravel-Carousel

A Laravel 4 package for adding a carousel to a website
PHP
1
star
26

laravel-kss

Dynamic style guide for Laravel projects
PHP
1
star
27

ibm_pw_sec

A PHP library for using IBM Partner World Session Exchange system.
PHP
1
star