From 52e951f2b38cb24651d6b0aa5658b918e1e01e76 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Sun, 31 Aug 2008 07:25:11 +0200 Subject: [PATCH] [svn r16140] Increased oogie thumbnail size to 300 pixels --- main/newscorm/openoffice_presentation.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/newscorm/openoffice_presentation.class.php b/main/newscorm/openoffice_presentation.class.php index 190cca4268..6eb06aee2c 100644 --- a/main/newscorm/openoffice_presentation.class.php +++ b/main/newscorm/openoffice_presentation.class.php @@ -68,7 +68,7 @@ class OpenofficePresentation extends OpenofficeDocument { $image = $this->base_work_dir.$this->created_dir .'/'. $file_name; // calculate thumbnail size list($width, $height) = getimagesize($image); - $thumb_width = 200; + $thumb_width = 300; $thumb_height = floor( $height * ($thumb_width / $width ) ); // load $thumb = imagecreatetruecolor($thumb_width, $thumb_height);