|
| 1 | +<?php |
| 2 | +/** |
| 3 | + * Instagram filters with PHP and ImageMagick |
| 4 | + * |
| 5 | + * @package Instagraph |
| 6 | + * @url http://instagraph.me (hosted by http://leftor.com) |
| 7 | + * @author Webarto <[email protected]> |
| 8 | + * @copyright NetTuts+ |
| 9 | + * @license http://creativecommons.org/licenses/by-nc/3.0/ CC BY-NC |
| 10 | + */ |
| 11 | +class Instagraph |
| 12 | +{ |
| 13 | + |
| 14 | + public $_image = NULL; |
| 15 | + public $_output = NULL; |
| 16 | + public $_prefix = 'IMG'; |
| 17 | + private $_width = NULL; |
| 18 | + private $_height = NULL; |
| 19 | + private $_tmp = NULL; |
| 20 | + |
| 21 | + public static function factory($image, $output) |
| 22 | + { |
| 23 | + return new Instagraph($image, $output); |
| 24 | + } |
| 25 | + |
| 26 | + # class constructor |
| 27 | + |
| 28 | + public function __construct($image, $output) |
| 29 | + { |
| 30 | + if(file_exists($image)) |
| 31 | + { |
| 32 | + $this->_image = $image; |
| 33 | + list($this->_width, $this->_height) = getimagesize($image); |
| 34 | + $this->_output = $output; |
| 35 | + } |
| 36 | + else |
| 37 | + { |
| 38 | + throw new Exception('File not found. Aborting.'); |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | + public function tempfile() |
| 43 | + { |
| 44 | + # copy original file and assign temporary name |
| 45 | + $this->_tmp = $this->_prefix.rand(); |
| 46 | + copy($this->_image, $this->_tmp); |
| 47 | + } |
| 48 | + |
| 49 | + public function output() |
| 50 | + { |
| 51 | + # rename working temporary file to output filename |
| 52 | + rename($this->_tmp, $this->_output); |
| 53 | + } |
| 54 | + |
| 55 | + public function execute($command) |
| 56 | + { |
| 57 | + # remove newlines and convert single quotes to double to prevent errors |
| 58 | + $command = str_replace(array("\n", "'"), array('', '"'), $command); |
| 59 | + # replace multiple spaces with one |
| 60 | + $command = preg_replace('#(\s){2,}#is', ' ', $command); |
| 61 | + # escape shell metacharacters |
| 62 | + $command = escapeshellcmd($command); |
| 63 | + # execute convert program |
| 64 | + exec($command); |
| 65 | + } |
| 66 | + |
| 67 | + /** ACTIONS */ |
| 68 | + |
| 69 | + public function colortone($input, $color, $level, $type = 0) |
| 70 | + { |
| 71 | + $args[0] = $level; |
| 72 | + $args[1] = 100 - $level; |
| 73 | + $negate = $type == 0? '-negate': ''; |
| 74 | + |
| 75 | + $this->execute("convert |
| 76 | + {$input} |
| 77 | + ( -clone 0 -fill $color -colorize 100% ) |
| 78 | + ( -clone 0 -colorspace gray $negate ) |
| 79 | + -compose blend -define compose:args=$args[0],$args[1] -composite |
| 80 | + {$input}"); |
| 81 | + } |
| 82 | + |
| 83 | + public function border($input, $color = 'black', $width = 20) |
| 84 | + { |
| 85 | + $this->execute("convert $input -bordercolor $color -border {$width}x{$width} $input"); |
| 86 | + } |
| 87 | + |
| 88 | + public function frame($input, $frame) |
| 89 | + { |
| 90 | + $this->execute("convert $input ( $frame -resize {$this->_width}x{$this->_height}! -unsharp 1.5×1.0+1.5+0.02 ) -flatten $input"); |
| 91 | + } |
| 92 | + |
| 93 | + public function vignette($input, $color_1 = 'none', $color_2 = 'black', $crop_factor = 1.5) |
| 94 | + { |
| 95 | + $crop_x = floor($this->_width * $crop_factor); |
| 96 | + $crop_y = floor($this->_height * $crop_factor); |
| 97 | + |
| 98 | + $this->execute("convert |
| 99 | + ( {$input} ) |
| 100 | + ( -size {$crop_x}x{$crop_y} |
| 101 | + radial-gradient:$color_1-$color_2 |
| 102 | + -gravity center -crop {$this->_width}x{$this->_height}+0+0 +repage ) |
| 103 | + -compose multiply -flatten |
| 104 | + {$input}"); |
| 105 | + } |
| 106 | + |
| 107 | + /** FILTER METHODS */ |
| 108 | + |
| 109 | + # GOTHAM |
| 110 | + public function gotham() |
| 111 | + { |
| 112 | + $this->tempfile(); |
| 113 | + $this->execute("convert $this->_tmp -modulate 120,10,100 -fill #222b6d -colorize 20 -gamma 0.5 -contrast -contrast $this->_tmp"); |
| 114 | + $this->border($this->_tmp); |
| 115 | + $this->output(); |
| 116 | + } |
| 117 | + |
| 118 | + # TOASTER |
| 119 | + public function toaster() |
| 120 | + { |
| 121 | + $this->tempfile(); |
| 122 | + $this->colortone($this->_tmp, '#330000', 100, 0); |
| 123 | + |
| 124 | + $this->execute("convert $this->_tmp -modulate 150,80,100 -gamma 1.2 -contrast -contrast $this->_tmp"); |
| 125 | + |
| 126 | + $this->vignette($this->_tmp, 'none', 'LavenderBlush3'); |
| 127 | + $this->vignette($this->_tmp, '#ff9966', 'none'); |
| 128 | + |
| 129 | + $this->output(); |
| 130 | + } |
| 131 | + |
| 132 | + # NASHVILLE |
| 133 | + public function nashville() |
| 134 | + { |
| 135 | + $this->tempfile(); |
| 136 | + |
| 137 | + $this->colortone($this->_tmp, '#222b6d', 100, 0); |
| 138 | + $this->colortone($this->_tmp, '#f7daae', 100, 1); |
| 139 | + |
| 140 | + $this->execute("convert $this->_tmp -contrast -modulate 100,150,100 -auto-gamma $this->_tmp"); |
| 141 | + $this->frame($this->_tmp, __FUNCTION__); |
| 142 | + |
| 143 | + $this->output(); |
| 144 | + } |
| 145 | + |
| 146 | + # LOMO-FI |
| 147 | + public function lomo() |
| 148 | + { |
| 149 | + $this->tempfile(); |
| 150 | + |
| 151 | + $command = "convert $this->_tmp -channel R -level 33% -channel G -level 33% $this->_tmp"; |
| 152 | + |
| 153 | + $this->execute($command); |
| 154 | + $this->vignette($this->_tmp); |
| 155 | + |
| 156 | + $this->output(); |
| 157 | + } |
| 158 | + |
| 159 | + # KELVIN |
| 160 | + public function kelvin() |
| 161 | + { |
| 162 | + $this->tempfile(); |
| 163 | + |
| 164 | + $this->execute("convert |
| 165 | + ( $this->_tmp -auto-gamma -modulate 120,50,100 ) |
| 166 | + ( -size {$this->_width}x{$this->_height} -fill rgba(255,153,0,0.5) -draw 'rectangle 0,0 {$this->_width},{$this->_height}' ) |
| 167 | + -compose multiply |
| 168 | + $this->_tmp"); |
| 169 | + $this->frame($this->_tmp, __FUNCTION__); |
| 170 | + |
| 171 | + $this->output(); |
| 172 | + } |
| 173 | + |
| 174 | + # TILT SHIFT |
| 175 | + public function tilt_shift() |
| 176 | + { |
| 177 | + $this->tempfile(); |
| 178 | + |
| 179 | + $this->execute("convert |
| 180 | + ( $this->_tmp -gamma 0.75 -modulate 100,130 -contrast ) |
| 181 | + ( +clone -sparse-color Barycentric '0,0 black 0,%h white' -function polynomial 4,-4,1 -level 0,50% ) |
| 182 | + -compose blur -set option:compose:args 5 -composite |
| 183 | + $this->_tmp"); |
| 184 | + |
| 185 | + $this->output(); |
| 186 | + } |
| 187 | + |
| 188 | +} |
0 commit comments