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
- Host: GitHub
- URL: https://github.com/roborourke/wp-instagraph
- Owner: roborourke
- Created: 2012-03-29T10:03:11.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-03-30T11:37:39.000Z (about 14 years ago)
- Last Synced: 2025-12-31T06:51:31.108Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 90.8 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).