An open API service indexing awesome lists of open source software.

https://github.com/roborourke/wp-instagraph

Use imagemagick filters automatically in wordpress
https://github.com/roborourke/wp-instagraph

Last synced: about 2 months ago
JSON representation

Use imagemagick filters automatically in wordpress

Awesome Lists containing this project

README

          

# WP Instagraph

This is a prototype WordPress plugin for using imagemagick filters on your wordpress
images. The [original tutorial that accompanied the Instagraph class is on netttuts here](net.tutsplus.com/tutorials/php/create-instagram-filters-with-php/).

The Instagraph class was written by Dejan Marjanovic of http://webarto.com/ (Thanks Dejan!)

There is currently no UI but it is planned to be able to select a default filter.

## Usage

To use the filters in your templates you have to call image sizes in the following way:

```php

```

In the above the image size requested is 'medium' and the filter to use is 'kelvin'.

The supplied filters are 'lomo', 'nashville', 'kelvin', 'toaster', 'gotham', 'tilt_shift'.

## API

You can register new filters in the following way:

```php
tempfile();

$command = "convert $this->_tmp -channel B -level 33% -channel G -level 20% $this->_tmp";

$this->execute($command);
$this->vignette($this->_tmp);

$this->output();
}

?>
```

This was a quickly made hack so it will need work, and hopefully some contributions! Go play.

## Questions

If you have any questions use the issue tracker here or get me on twitter [@sanchothefat](https://twitter.com/sanchothefat).