3 * StatusNet, the distributed open-source microblogging tool
5 * Abstraction for an image file
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Zach Copley <zach@status.net>
26 * @copyright 2008-2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 * A wrapper on uploaded files
38 * Makes it slightly easier to accept an image file from upload.
42 * @author Evan Prodromou <evan@status.net>
43 * @author Zach Copley <zach@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://status.net/
57 function __construct($id=null, $filepath=null, $type=null, $width=null, $height=null)
60 $this->filepath = $filepath;
62 $info = @getimagesize($this->filepath);
63 $this->type = ($info) ? $info[2]:$type;
64 $this->width = ($info) ? $info[0]:$width;
65 $this->height = ($info) ? $info[1]:$height;
68 static function fromUpload($param='upload')
70 switch ($_FILES[$param]['error']) {
71 case UPLOAD_ERR_OK: // success, jump out
73 case UPLOAD_ERR_INI_SIZE:
74 case UPLOAD_ERR_FORM_SIZE:
75 throw new Exception(sprintf(_('That file is too big. The maximum file size is %d.'),
76 ImageFile::maxFileSize()));
78 case UPLOAD_ERR_PARTIAL:
79 @unlink($_FILES[$param]['tmp_name']);
80 throw new Exception(_('Partial upload.'));
83 throw new Exception(_('System error uploading file.'));
87 $info = @getimagesize($_FILES[$param]['tmp_name']);
90 @unlink($_FILES[$param]['tmp_name']);
91 throw new Exception(_('Not an image or corrupt file.'));
95 if ($info[2] !== IMAGETYPE_GIF &&
96 $info[2] !== IMAGETYPE_JPEG &&
97 $info[2] !== IMAGETYPE_PNG) {
99 @unlink($_FILES[$param]['tmp_name']);
100 throw new Exception(_('Unsupported image file format.'));
104 return new ImageFile(null, $_FILES[$param]['tmp_name']);
107 function resize($size, $x = 0, $y = 0, $w = null, $h = null)
109 $w = ($w === null) ? $this->width:$w;
110 $h = ($h === null) ? $this->height:$h;
112 if (!file_exists($this->filepath)) {
113 throw new Exception(_('Lost our file.'));
117 // Don't crop/scale if it isn't necessary
118 if ($size === $this->width
119 && $size === $this->height
122 && $w === $this->width
123 && $h === $this->height) {
125 $outname = Avatar::filename($this->id,
126 image_type_to_extension($this->type),
129 $outpath = Avatar::path($outname);
130 @copy($this->filepath, $outpath);
134 switch ($this->type) {
136 $image_src = imagecreatefromgif($this->filepath);
139 $image_src = imagecreatefromjpeg($this->filepath);
142 $image_src = imagecreatefrompng($this->filepath);
145 throw new Exception(_('Unknown file type'));
149 $image_dest = imagecreatetruecolor($size, $size);
151 if ($this->type == IMAGETYPE_GIF || $this->type == IMAGETYPE_PNG) {
153 $transparent_idx = imagecolortransparent($image_src);
155 if ($transparent_idx >= 0) {
157 $transparent_color = imagecolorsforindex($image_src, $transparent_idx);
158 $transparent_idx = imagecolorallocate($image_dest, $transparent_color['red'], $transparent_color['green'], $transparent_color['blue']);
159 imagefill($image_dest, 0, 0, $transparent_idx);
160 imagecolortransparent($image_dest, $transparent_idx);
162 } elseif ($this->type == IMAGETYPE_PNG) {
164 imagealphablending($image_dest, false);
165 $transparent = imagecolorallocatealpha($image_dest, 0, 0, 0, 127);
166 imagefill($image_dest, 0, 0, $transparent);
167 imagesavealpha($image_dest, true);
172 imagecopyresampled($image_dest, $image_src, 0, 0, $x, $y, $size, $size, $w, $h);
174 $outname = Avatar::filename($this->id,
175 image_type_to_extension($this->type),
179 $outpath = Avatar::path($outname);
181 switch ($this->type) {
183 imagegif($image_dest, $outpath);
186 imagejpeg($image_dest, $outpath, 100);
189 imagepng($image_dest, $outpath);
192 throw new Exception(_('Unknown file type'));
196 imagedestroy($image_src);
197 imagedestroy($image_dest);
204 @unlink($this->filename);
207 static function maxFileSize()
209 $value = ImageFile::maxFileSizeInt();
211 if ($value > 1024 * 1024) {
212 return ($value/(1024*1024)).'Mb';
213 } else if ($value > 1024) {
214 return ($value/(1024)).'kB';
220 static function maxFileSizeInt()
222 return min(ImageFile::strToInt(ini_get('post_max_size')),
223 ImageFile::strToInt(ini_get('upload_max_filesize')),
224 ImageFile::strToInt(ini_get('memory_limit')));
227 static function strToInt($str)
229 $unit = substr($str, -1);
230 $num = substr($str, 0, -1);
232 switch(strtoupper($unit)){