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);
65 ($info[2] == IMAGETYPE_GIF && function_exists('imagecreatefromgif')) ||
66 ($info[2] == IMAGETYPE_JPEG && function_exists('imagecreatefromjpeg')) ||
67 $info[2] == IMAGETYPE_BMP ||
68 ($info[2] == IMAGETYPE_WBMP && function_exists('imagecreatefromwbmp')) ||
69 ($info[2] == IMAGETYPE_XBM && function_exists('imagecreatefromxbm')) ||
70 ($info[2] == IMAGETYPE_PNG && function_exists('imagecreatefrompng')))) {
72 throw new Exception(_('Unsupported image file format.'));
76 $this->type = ($info) ? $info[2]:$type;
77 $this->width = ($info) ? $info[0]:$width;
78 $this->height = ($info) ? $info[1]:$height;
81 static function fromUpload($param='upload')
83 switch ($_FILES[$param]['error']) {
84 case UPLOAD_ERR_OK: // success, jump out
86 case UPLOAD_ERR_INI_SIZE:
87 case UPLOAD_ERR_FORM_SIZE:
88 throw new Exception(sprintf(_('That file is too big. The maximum file size is %s.'),
89 ImageFile::maxFileSize()));
91 case UPLOAD_ERR_PARTIAL:
92 @unlink($_FILES[$param]['tmp_name']);
93 throw new Exception(_('Partial upload.'));
95 case UPLOAD_ERR_NO_FILE:
96 // No file; probably just a non-AJAX submission.
99 common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " .
100 $_FILES[$param]['error']);
101 throw new Exception(_('System error uploading file.'));
105 $info = @getimagesize($_FILES[$param]['tmp_name']);
108 @unlink($_FILES[$param]['tmp_name']);
109 throw new Exception(_('Not an image or corrupt file.'));
113 return new ImageFile(null, $_FILES[$param]['tmp_name']);
116 function resize($size, $x = 0, $y = 0, $w = null, $h = null)
118 $w = ($w === null) ? $this->width:$w;
119 $h = ($h === null) ? $this->height:$h;
121 if (!file_exists($this->filepath)) {
122 throw new Exception(_('Lost our file.'));
126 // Don't crop/scale if it isn't necessary
127 if ($size === $this->width
128 && $size === $this->height
131 && $w === $this->width
132 && $h === $this->height) {
134 $outname = Avatar::filename($this->id,
135 image_type_to_extension($this->type),
138 $outpath = Avatar::path($outname);
139 @copy($this->filepath, $outpath);
143 switch ($this->type) {
145 $image_src = imagecreatefromgif($this->filepath);
148 $image_src = imagecreatefromjpeg($this->filepath);
151 $image_src = imagecreatefrompng($this->filepath);
154 $image_src = imagecreatefrombmp($this->filepath);
157 $image_src = imagecreatefromwbmp($this->filepath);
160 $image_src = imagecreatefromxbm($this->filepath);
163 throw new Exception(_('Unknown file type'));
167 $image_dest = imagecreatetruecolor($size, $size);
169 if ($this->type == IMAGETYPE_GIF || $this->type == IMAGETYPE_PNG || $this->type == IMAGETYPE_BMP) {
171 $transparent_idx = imagecolortransparent($image_src);
173 if ($transparent_idx >= 0) {
175 $transparent_color = imagecolorsforindex($image_src, $transparent_idx);
176 $transparent_idx = imagecolorallocate($image_dest, $transparent_color['red'], $transparent_color['green'], $transparent_color['blue']);
177 imagefill($image_dest, 0, 0, $transparent_idx);
178 imagecolortransparent($image_dest, $transparent_idx);
180 } elseif ($this->type == IMAGETYPE_PNG) {
182 imagealphablending($image_dest, false);
183 $transparent = imagecolorallocatealpha($image_dest, 0, 0, 0, 127);
184 imagefill($image_dest, 0, 0, $transparent);
185 imagesavealpha($image_dest, true);
190 imagecopyresampled($image_dest, $image_src, 0, 0, $x, $y, $size, $size, $w, $h);
192 if($this->type == IMAGETYPE_BMP) {
193 //we don't want to save BMP... it's an inefficient, rare, antiquated format
195 $this->type = IMAGETYPE_PNG;
196 } else if($this->type == IMAGETYPE_WBMP) {
197 //we don't want to save WBMP... it's a rare format that we can't guarantee clients will support
199 $this->type = IMAGETYPE_PNG;
200 } else if($this->type == IMAGETYPE_XBM) {
201 //we don't want to save XBM... it's a rare format that we can't guarantee clients will support
203 $this->type = IMAGETYPE_PNG;
206 $outname = Avatar::filename($this->id,
207 image_type_to_extension($this->type),
211 $outpath = Avatar::path($outname);
213 switch ($this->type) {
215 imagegif($image_dest, $outpath);
218 imagejpeg($image_dest, $outpath, 100);
221 imagepng($image_dest, $outpath);
224 throw new Exception(_('Unknown file type'));
228 imagedestroy($image_src);
229 imagedestroy($image_dest);
236 @unlink($this->filename);
239 static function maxFileSize()
241 $value = ImageFile::maxFileSizeInt();
243 if ($value > 1024 * 1024) {
244 return ($value/(1024*1024)) . _('MB');
245 } else if ($value > 1024) {
246 return ($value/(1024)) . _('kB');
252 static function maxFileSizeInt()
254 return min(ImageFile::strToInt(ini_get('post_max_size')),
255 ImageFile::strToInt(ini_get('upload_max_filesize')),
256 ImageFile::strToInt(ini_get('memory_limit')));
259 static function strToInt($str)
261 $unit = substr($str, -1);
262 $num = substr($str, 0, -1);
264 switch(strtoupper($unit)){
277 //PHP doesn't (as of 2/24/2010) have an imagecreatefrombmp so conditionally define one
278 if(!function_exists('imagecreatefrombmp')){
279 //taken shamelessly from http://www.php.net/manual/en/function.imagecreatefromwbmp.php#86214
280 function imagecreatefrombmp($p_sFile)
282 // Load the image into a string
283 $file = fopen($p_sFile,"rb");
284 $read = fread($file,10);
285 while(!feof($file)&&($read<>""))
286 $read .= fread($file,1024);
288 $temp = unpack("H*",$read);
290 $header = substr($hex,0,108);
292 // Process the header
293 // Structure: http://www.fastgraph.com/help/bmp_header_format.html
294 if (substr($header,0,4)=="424d")
296 // Cut it in parts of 2 bytes
297 $header_parts = str_split($header,2);
299 // Get the width 4 bytes
300 $width = hexdec($header_parts[19].$header_parts[18]);
302 // Get the height 4 bytes
303 $height = hexdec($header_parts[23].$header_parts[22]);
305 // Unset the header params
306 unset($header_parts);
309 // Define starting X and Y
314 $image = imagecreatetruecolor($width,$height);
316 // Grab the body from the image
317 $body = substr($hex,108);
319 // Calculate if padding at the end-line is needed
320 // Divided by two to keep overview.
321 // 1 byte = 2 HEX-chars
322 $body_size = (strlen($body)/2);
323 $header_size = ($width*$height);
325 // Use end-line padding? Only when needed
326 $usePadding = ($body_size>($header_size*3)+4);
328 // Using a for-loop with index-calculation instaid of str_split to avoid large memory consumption
329 // Calculate the next DWORD-position in the body
330 for ($i=0;$i<$body_size;$i+=3)
332 // Calculate line-ending and padding
335 // If padding needed, ignore image-padding
336 // Shift i to the ending of the current 32-bit-block
340 // Reset horizontal position
343 // Raise the height-position (bottom-up)
346 // Reached the image-height? Break the for-loop
351 // Calculation of the RGB-pixel (defined as BGR in image-data)
352 // Define $i_pos as absolute position in the body
354 $r = hexdec($body[$i_pos+4].$body[$i_pos+5]);
355 $g = hexdec($body[$i_pos+2].$body[$i_pos+3]);
356 $b = hexdec($body[$i_pos].$body[$i_pos+1]);
358 // Calculate and draw the pixel
359 $color = imagecolorallocate($image,$r,$g,$b);
360 imagesetpixel($image,$x,$height-$y,$color);
362 // Raise the horizontal position
366 // Unset the body / free the memory
369 // Return image-object