2004-09-26 04:57:07 +00:00
|
|
|
<?php
|
|
|
|
|
2009-11-01 16:48:45 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
2009-05-25 08:27:25 +00:00
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2009-11-01 16:48:45 +00:00
|
|
|
//
|
2009-05-25 08:27:25 +00:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2004-09-26 04:57:07 +00:00
|
|
|
/**
|
2007-08-15 14:00:35 +00:00
|
|
|
* gdlib.php - Collection of routines in Moodle related to
|
2004-09-26 04:57:07 +00:00
|
|
|
* processing images using GD
|
|
|
|
*
|
2010-07-25 13:35:05 +00:00
|
|
|
* @package core
|
2009-05-25 08:27:25 +00:00
|
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2004-09-26 04:57:07 +00:00
|
|
|
*/
|
|
|
|
|
2010-07-25 13:35:05 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2007-08-15 14:00:35 +00:00
|
|
|
/**
|
2012-04-18 00:32:07 +02:00
|
|
|
* Copies a rectangular portion of the source image to another rectangle in the destination image
|
2004-09-26 04:57:07 +00:00
|
|
|
*
|
2012-04-18 00:32:07 +02:00
|
|
|
* This function calls imagecopyresampled() if it is available and GD version is 2 at least.
|
|
|
|
* Otherwise it reimplements the same behaviour. See the PHP manual page for more info.
|
|
|
|
*
|
|
|
|
* @link http://php.net/manual/en/function.imagecopyresampled.php
|
|
|
|
* @param resource $dst_img the destination GD image resource
|
|
|
|
* @param resource $src_img the source GD image resource
|
|
|
|
* @param int $dst_x vthe X coordinate of the upper left corner in the destination image
|
|
|
|
* @param int $dst_y the Y coordinate of the upper left corner in the destination image
|
|
|
|
* @param int $src_x the X coordinate of the upper left corner in the source image
|
|
|
|
* @param int $src_y the Y coordinate of the upper left corner in the source image
|
|
|
|
* @param int $dst_w the width of the destination rectangle
|
|
|
|
* @param int $dst_h the height of the destination rectangle
|
|
|
|
* @param int $src_w the width of the source rectangle
|
|
|
|
* @param int $src_h the height of the source rectangle
|
|
|
|
* @return bool tru on success, false otherwise
|
2004-09-26 04:57:07 +00:00
|
|
|
*/
|
2012-04-18 00:32:07 +02:00
|
|
|
function imagecopybicubic($dst_img, $src_img, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h) {
|
2004-01-10 16:38:18 +00:00
|
|
|
global $CFG;
|
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
if (function_exists('imagecopyresampled') and $CFG->gdversion >= 2) {
|
|
|
|
return imagecopyresampled($dst_img, $src_img, $dst_x, $dst_y, $src_x, $src_y,
|
2004-01-10 16:38:18 +00:00
|
|
|
$dst_w, $dst_h, $src_w, $src_h);
|
|
|
|
}
|
|
|
|
|
|
|
|
$totalcolors = imagecolorstotal($src_img);
|
2007-08-15 14:00:35 +00:00
|
|
|
for ($i=0; $i<$totalcolors; $i++) {
|
2012-04-18 00:32:07 +02:00
|
|
|
if ($colors = imagecolorsforindex($src_img, $i)) {
|
|
|
|
imagecolorallocate($dst_img, $colors['red'], $colors['green'], $colors['blue']);
|
2004-01-10 16:38:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
$scalex = ($src_w - 1) / $dst_w;
|
|
|
|
$scaley = ($src_h - 1) / $dst_h;
|
2004-01-10 16:38:18 +00:00
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
$scalex2 = $scalex / 2.0;
|
|
|
|
$scaley2 = $scaley / 2.0;
|
2004-01-10 16:38:18 +00:00
|
|
|
|
2007-08-15 14:00:35 +00:00
|
|
|
for ($j = 0; $j < $dst_h; $j++) {
|
2012-04-18 00:32:07 +02:00
|
|
|
$sy = $j * $scaley;
|
2004-01-10 16:38:18 +00:00
|
|
|
|
2007-08-15 14:00:35 +00:00
|
|
|
for ($i = 0; $i < $dst_w; $i++) {
|
2012-04-18 00:32:07 +02:00
|
|
|
$sx = $i * $scalex;
|
2004-01-10 16:38:18 +00:00
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
$c1 = imagecolorsforindex($src_img, imagecolorat($src_img, (int)$sx, (int)$sy + $scaley2));
|
|
|
|
$c2 = imagecolorsforindex($src_img, imagecolorat($src_img, (int)$sx, (int)$sy));
|
|
|
|
$c3 = imagecolorsforindex($src_img, imagecolorat($src_img, (int)$sx + $scalex2, (int)$sy + $scaley2));
|
|
|
|
$c4 = imagecolorsforindex($src_img, imagecolorat($src_img, (int)$sx + $scalex2, (int)$sy));
|
2004-01-10 16:38:18 +00:00
|
|
|
|
2007-08-15 14:00:35 +00:00
|
|
|
$red = (int) (($c1['red'] + $c2['red'] + $c3['red'] + $c4['red']) / 4);
|
|
|
|
$green = (int) (($c1['green'] + $c2['green'] + $c3['green'] + $c4['green']) / 4);
|
|
|
|
$blue = (int) (($c1['blue'] + $c2['blue'] + $c3['blue'] + $c4['blue']) / 4);
|
2004-01-10 16:38:18 +00:00
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
$color = imagecolorclosest($dst_img, $red, $green, $blue);
|
|
|
|
imagesetpixel($dst_img, $i + $dst_x, $j + $dst_y, $color);
|
2007-08-15 14:00:35 +00:00
|
|
|
}
|
|
|
|
}
|
2004-01-10 16:38:18 +00:00
|
|
|
}
|
|
|
|
|
2010-07-11 11:43:15 +00:00
|
|
|
/**
|
|
|
|
* Stores optimised icon images in icon file area
|
|
|
|
*
|
2012-04-30 23:36:47 +02:00
|
|
|
* @param context $context
|
|
|
|
* @param string $component
|
|
|
|
* @param string filearea
|
|
|
|
* @param int $itemid
|
|
|
|
* @param string $originalfile
|
|
|
|
* @return mixed new unique revision number or false if not saved
|
2010-07-11 11:43:15 +00:00
|
|
|
*/
|
|
|
|
function process_new_icon($context, $component, $filearea, $itemid, $originalfile) {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
if (empty($CFG->gdversion)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_file($originalfile)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
$imageinfo = getimagesize($originalfile);
|
2010-07-11 11:43:15 +00:00
|
|
|
|
|
|
|
if (empty($imageinfo)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-21 08:07:44 +00:00
|
|
|
$image = new stdClass();
|
2010-07-11 11:43:15 +00:00
|
|
|
$image->width = $imageinfo[0];
|
|
|
|
$image->height = $imageinfo[1];
|
|
|
|
$image->type = $imageinfo[2];
|
|
|
|
|
2012-05-13 19:06:55 +02:00
|
|
|
$t = null;
|
2010-07-11 11:43:15 +00:00
|
|
|
switch ($image->type) {
|
|
|
|
case IMAGETYPE_GIF:
|
2012-04-18 00:32:07 +02:00
|
|
|
if (function_exists('imagecreatefromgif')) {
|
|
|
|
$im = imagecreatefromgif($originalfile);
|
2010-07-11 11:43:15 +00:00
|
|
|
} else {
|
|
|
|
debugging('GIF not supported on this server');
|
|
|
|
return false;
|
|
|
|
}
|
2012-05-13 19:06:55 +02:00
|
|
|
// Guess transparent colour from GIF.
|
|
|
|
$transparent = imagecolortransparent($im);
|
|
|
|
if ($transparent != -1) {
|
|
|
|
$t = imagecolorsforindex($im, $transparent);
|
|
|
|
}
|
2010-07-11 11:43:15 +00:00
|
|
|
break;
|
|
|
|
case IMAGETYPE_JPEG:
|
2012-04-18 00:32:07 +02:00
|
|
|
if (function_exists('imagecreatefromjpeg')) {
|
|
|
|
$im = imagecreatefromjpeg($originalfile);
|
2010-07-11 11:43:15 +00:00
|
|
|
} else {
|
|
|
|
debugging('JPEG not supported on this server');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case IMAGETYPE_PNG:
|
2012-04-18 00:32:07 +02:00
|
|
|
if (function_exists('imagecreatefrompng')) {
|
|
|
|
$im = imagecreatefrompng($originalfile);
|
2010-07-11 11:43:15 +00:00
|
|
|
} else {
|
|
|
|
debugging('PNG not supported on this server');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
if (function_exists('imagepng')) {
|
|
|
|
$imagefnc = 'imagepng';
|
2010-07-25 16:28:09 +00:00
|
|
|
$imageext = '.png';
|
|
|
|
$filters = PNG_NO_FILTER;
|
|
|
|
$quality = 1;
|
2012-04-18 00:32:07 +02:00
|
|
|
} else if (function_exists('imagejpeg')) {
|
|
|
|
$imagefnc = 'imagejpeg';
|
2010-07-25 16:28:09 +00:00
|
|
|
$imageext = '.jpg';
|
|
|
|
$filters = null; // not used
|
|
|
|
$quality = 90;
|
|
|
|
} else {
|
|
|
|
debugging('Jpeg and png not supported on this server, please fix server configuration');
|
|
|
|
return false;
|
|
|
|
}
|
2010-07-11 11:43:15 +00:00
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
if (function_exists('imagecreatetruecolor') and $CFG->gdversion >= 2) {
|
|
|
|
$im1 = imagecreatetruecolor(100, 100);
|
|
|
|
$im2 = imagecreatetruecolor(35, 35);
|
2012-05-13 17:12:30 +02:00
|
|
|
$im3 = imagecreatetruecolor(512, 512);
|
2012-05-13 19:06:55 +02:00
|
|
|
if ($image->type != IMAGETYPE_JPEG and $imagefnc === 'imagepng') {
|
|
|
|
if ($t) {
|
|
|
|
// Transparent GIF hacking...
|
|
|
|
$transparentcolour = imagecolorallocate($im1 , $t['red'] , $t['green'] , $t['blue']);
|
|
|
|
imagecolortransparent($im1 , $transparentcolour);
|
|
|
|
$transparentcolour = imagecolorallocate($im2 , $t['red'] , $t['green'] , $t['blue']);
|
|
|
|
imagecolortransparent($im2 , $transparentcolour);
|
|
|
|
$transparentcolour = imagecolorallocate($im3 , $t['red'] , $t['green'] , $t['blue']);
|
|
|
|
imagecolortransparent($im3 , $transparentcolour);
|
|
|
|
}
|
|
|
|
|
2010-07-25 16:28:09 +00:00
|
|
|
imagealphablending($im1, false);
|
|
|
|
$color = imagecolorallocatealpha($im1, 0, 0, 0, 127);
|
|
|
|
imagefill($im1, 0, 0, $color);
|
|
|
|
imagesavealpha($im1, true);
|
2012-05-13 17:12:30 +02:00
|
|
|
|
2010-07-25 16:28:09 +00:00
|
|
|
imagealphablending($im2, false);
|
|
|
|
$color = imagecolorallocatealpha($im2, 0, 0, 0, 127);
|
|
|
|
imagefill($im2, 0, 0, $color);
|
|
|
|
imagesavealpha($im2, true);
|
2012-05-13 17:12:30 +02:00
|
|
|
|
|
|
|
imagealphablending($im3, false);
|
|
|
|
$color = imagecolorallocatealpha($im3, 0, 0, 0, 127);
|
|
|
|
imagefill($im3, 0, 0, $color);
|
|
|
|
imagesavealpha($im3, true);
|
2010-07-25 16:28:09 +00:00
|
|
|
}
|
2010-07-11 11:43:15 +00:00
|
|
|
} else {
|
2012-04-18 00:32:07 +02:00
|
|
|
$im1 = imagecreate(100, 100);
|
|
|
|
$im2 = imagecreate(35, 35);
|
2012-05-13 17:12:30 +02:00
|
|
|
$im3 = imagecreate(512, 512);
|
2010-07-11 11:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$cx = $image->width / 2;
|
|
|
|
$cy = $image->height / 2;
|
|
|
|
|
|
|
|
if ($image->width < $image->height) {
|
|
|
|
$half = floor($image->width / 2.0);
|
|
|
|
} else {
|
|
|
|
$half = floor($image->height / 2.0);
|
|
|
|
}
|
|
|
|
|
2012-04-18 00:32:07 +02:00
|
|
|
imagecopybicubic($im1, $im, 0, 0, $cx - $half, $cy - $half, 100, 100, $half * 2, $half * 2);
|
|
|
|
imagecopybicubic($im2, $im, 0, 0, $cx - $half, $cy - $half, 35, 35, $half * 2, $half * 2);
|
2012-05-13 17:12:30 +02:00
|
|
|
imagecopybicubic($im3, $im, 0, 0, $cx - $half, $cy - $half, 512, 512, $half * 2, $half * 2);
|
2010-07-11 11:43:15 +00:00
|
|
|
|
|
|
|
$fs = get_file_storage();
|
|
|
|
|
|
|
|
$icon = array('contextid'=>$context->id, 'component'=>$component, 'filearea'=>$filearea, 'itemid'=>$itemid, 'filepath'=>'/');
|
|
|
|
|
|
|
|
ob_start();
|
2010-07-25 16:28:09 +00:00
|
|
|
if (!$imagefnc($im1, NULL, $quality, $filters)) {
|
2010-07-11 11:43:15 +00:00
|
|
|
// keep old icons
|
|
|
|
ob_end_clean();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$data = ob_get_clean();
|
2012-04-18 00:32:07 +02:00
|
|
|
imagedestroy($im1);
|
2010-07-25 16:28:09 +00:00
|
|
|
$icon['filename'] = 'f1'.$imageext;
|
2010-07-11 11:43:15 +00:00
|
|
|
$fs->delete_area_files($context->id, $component, $filearea, $itemid);
|
2012-04-30 23:36:47 +02:00
|
|
|
$file1 = $fs->create_file_from_string($icon, $data);
|
2010-07-11 11:43:15 +00:00
|
|
|
|
|
|
|
ob_start();
|
2010-07-25 16:28:09 +00:00
|
|
|
if (!$imagefnc($im2, NULL, $quality, $filters)) {
|
2010-07-11 11:43:15 +00:00
|
|
|
ob_end_clean();
|
|
|
|
$fs->delete_area_files($context->id, $component, $filearea, $itemid);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$data = ob_get_clean();
|
2012-04-18 00:32:07 +02:00
|
|
|
imagedestroy($im2);
|
2010-07-25 16:28:09 +00:00
|
|
|
$icon['filename'] = 'f2'.$imageext;
|
2010-07-11 11:43:15 +00:00
|
|
|
$fs->create_file_from_string($icon, $data);
|
|
|
|
|
2012-05-13 17:12:30 +02:00
|
|
|
ob_start();
|
|
|
|
if (!$imagefnc($im3, NULL, $quality, $filters)) {
|
|
|
|
ob_end_clean();
|
|
|
|
$fs->delete_area_files($context->id, $component, $filearea, $itemid);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$data = ob_get_clean();
|
|
|
|
imagedestroy($im3);
|
|
|
|
$icon['filename'] = 'f3'.$imageext;
|
|
|
|
$fs->create_file_from_string($icon, $data);
|
|
|
|
|
2012-04-30 23:36:47 +02:00
|
|
|
return $file1->get_id();
|
2010-07-11 11:43:15 +00:00
|
|
|
}
|
|
|
|
|
2012-04-18 00:37:49 +02:00
|
|
|
/**
|
|
|
|
* Generates a thumbnail for the given image
|
|
|
|
*
|
|
|
|
* If the GD library has at least version 2 and PNG support is available, the returned data
|
|
|
|
* is the content of a transparent PNG file containing the thumbnail. Otherwise, the function
|
|
|
|
* returns contents of a JPEG file with black background containing the thumbnail.
|
|
|
|
*
|
|
|
|
* @param string $filepath the full path to the original image file
|
|
|
|
* @param int $width the width of the requested thumbnail
|
|
|
|
* @param int $height the height of the requested thumbnail
|
|
|
|
* @return string|bool false if a problem occurs, the thumbnail image data otherwise
|
|
|
|
*/
|
|
|
|
function generate_image_thumbnail($filepath, $width, $height) {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
if (empty($CFG->gdversion) or empty($filepath) or empty($width) or empty($height)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$imageinfo = getimagesize($filepath);
|
|
|
|
|
|
|
|
if (empty($imageinfo)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$originalwidth = $imageinfo[0];
|
|
|
|
$originalheight = $imageinfo[1];
|
|
|
|
|
|
|
|
if (empty($originalwidth) or empty($originalheight)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$original = imagecreatefromstring(file_get_contents($filepath));
|
|
|
|
|
|
|
|
if (function_exists('imagepng')) {
|
|
|
|
$imagefnc = 'imagepng';
|
|
|
|
$filters = PNG_NO_FILTER;
|
|
|
|
$quality = 1;
|
|
|
|
} else if (function_exists('imagejpeg')) {
|
|
|
|
$imagefnc = 'imagejpeg';
|
|
|
|
$filters = null;
|
|
|
|
$quality = 90;
|
|
|
|
} else {
|
|
|
|
debugging('Neither JPEG nor PNG are supported at this server, please fix the system configuration.');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (function_exists('imagecreatetruecolor') and $CFG->gdversion >= 2) {
|
|
|
|
$thumbnail = imagecreatetruecolor($width, $height);
|
|
|
|
if ($imagefnc === 'imagepng') {
|
|
|
|
imagealphablending($thumbnail, false);
|
|
|
|
imagefill($thumbnail, 0, 0, imagecolorallocatealpha($thumbnail, 0, 0, 0, 127));
|
|
|
|
imagesavealpha($thumbnail, true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$thumbnail = imagecreate($width, $height);
|
|
|
|
}
|
|
|
|
|
|
|
|
$ratio = min($width / $originalwidth, $height / $originalheight);
|
|
|
|
|
|
|
|
if ($ratio < 1) {
|
|
|
|
$targetwidth = floor($originalwidth * $ratio);
|
|
|
|
$targetheight = floor($originalheight * $ratio);
|
|
|
|
} else {
|
|
|
|
// do not enlarge the original file if it is smaller than the requested thumbnail size
|
|
|
|
$targetwidth = $originalwidth;
|
|
|
|
$targetheight = $originalheight;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dstx = floor(($width - $targetwidth) / 2);
|
|
|
|
$dsty = floor(($height - $targetheight) / 2);
|
|
|
|
|
|
|
|
imagecopybicubic($thumbnail, $original, $dstx, $dsty, 0, 0, $targetwidth, $targetheight, $originalwidth, $originalheight);
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
if (!$imagefnc($thumbnail, null, $quality, $filters)) {
|
|
|
|
ob_end_clean();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$data = ob_get_clean();
|
|
|
|
imagedestroy($original);
|
|
|
|
imagedestroy($thumbnail);
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|