aboutsummaryrefslogtreecommitdiff
path: root/lib/resize.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-05-17 02:28:58 +0000
committerCash Costello <cash.costello@gmail.com>2009-05-17 02:28:58 +0000
commitfcd9762b51d26998445d7061261d18df70c8941c (patch)
tree425205edd9ecac7fb00041998550f586b7ac1a48 /lib/resize.php
parentfa25b350b0d0acce58265f4851ed08434ae517c0 (diff)
downloadelgg-fcd9762b51d26998445d7061261d18df70c8941c.tar.gz
elgg-fcd9762b51d26998445d7061261d18df70c8941c.tar.bz2
moved code from upload action in resize library
Diffstat (limited to 'lib/resize.php')
-rw-r--r--lib/resize.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/lib/resize.php b/lib/resize.php
index 657e56824..daf18efdf 100644
--- a/lib/resize.php
+++ b/lib/resize.php
@@ -4,5 +4,83 @@
*
*/
+ /**
+ * Create thumbnails using PHP GD Library
+ *
+ * @param ElggFile
+ * @param string
+ * @param string
+ * @return bool
+ */
+ function tp_create_gd_thumbnails($file, $prefix, $filestorename)
+ {
+ global $CONFIG;
+
+ $mime = $file->getMimeType();
+
+ // Generate thumbnails
+ $thumbnail = get_resized_image_from_existing_file( $file->getFilenameOnFilestore(),
+ $CONFIG->tidypics->image_thumb_width,
+ $CONFIG->tidypics->image_thumb_height,
+ true);
+
+ if ($thumbnail) {
+ $thumb = new ElggFile();
+ $thumb->setMimeType($mime);
+ $thumb->setFilename($prefix."thumb".$filestorename);
+ $thumb->open("write");
+ if ($thumb->write($thumbnail)) {
+ $file->thumbnail = $prefix."thumb".$filestorename;
+ } else {
+ $thumb->delete();
+ }
+ $thumb->close();
+ unset($thumb);
+ }
+ unset($thumbnail);
+
+ $thumbsmall = get_resized_image_from_existing_file( $file->getFilenameOnFilestore(),
+ $CONFIG->tidypics->image_small_width,
+ $CONFIG->tidypics->image_small_height,
+ true);
+
+
+ if ($thumbsmall) {
+ $thumb = new ElggFile();
+ $thumb->setMimeType($mime);
+ $thumb->setFilename($prefix."smallthumb".$filestorename);
+ $thumb->open("write");
+ if ($thumb->write($thumbsmall)) {
+ $file->smallthumb = $prefix."smallthumb".$filestorename;
+ } else {
+ $thumb->delete();
+ }
+ $thumb->close();
+ unset($thumb);
+ }
+ unset($thumbsmall);
+
+ $thumblarge = get_resized_image_from_existing_file( $file->getFilenameOnFilestore(),
+ $CONFIG->tidypics->image_large_width,
+ $CONFIG->tidypics->image_large_height,
+ false);
+
+ if ($thumblarge) {
+ $thumb = new ElggFile();
+ $thumb->setMimeType($mime);
+ $thumb->setFilename($prefix."largethumb".$filestorename);
+ $thumb->open("write");
+ if ($thumb->write($thumblarge)) {
+ $file->largethumb = $prefix."largethumb".$filestorename;
+ } else {
+ $thumb->delete();
+ }
+ $thumb->close();
+ unset($thumb);
+ }
+ unset($thumblarge);
+
+ return true;
+ }
?> \ No newline at end of file