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);