X-Git-Url: http://git.pippins.net/embedvideo/.git/%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%01%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%0F%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD?a=blobdiff_plain;f=ItemAddEmbedVideo.inc;h=460370918a7e19a75e97f642ab05850cc129c3d4;hb=5a178a5689d8a62fbb9e5da64869cc4b9d32070f;hp=6d1e8d7c5f26f945d6d670856bbf2c38ce1b762e;hpb=2266d371cd774ad41e57be7520b3121486437615;p=embedvideo%2F.git diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index 6d1e8d7..4603709 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -521,31 +521,33 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } /* Resize the thumbnail image to the size indicated by our album */ + $debugString=""; list ($ret, $toolkit) = GalleryCoreApi::getToolkitByOperation($mimeType, 'resize'); if (!$ret) { - if(!strcmp($debugOutput,"true")) { - print "Checking to see if toolkit was found
"; - } - if (isset($toolkit)) { - $newTmpFile = $platform->tempnam($tmpDir, 'add'); - $newTmpFile.= ".jpg"; - $thumbnailSize = 150; - list ($ret, $preferences) = GalleryCoreApi::fetchDerivativePreferencesForItem($item->getId()); - if(!$ret) { - foreach ($preferences as $preference) { - if (preg_match('/thumbnail\|(\d+)/', - $preference['derivativeOperations'], $matches)) { - $thumbnailSize = $matches[1]; - break; + $debugString.="Checking to see if a toolkit that can resize images was found.
"; + if (isset($toolkit)) { + $newTmpFile = $platform->tempnam($tmpDir, 'add'); + $newTmpFile.= ".jpg"; + $thumbnailSize = 150; + list ($ret, $preferences) = + GalleryCoreApi::fetchDerivativePreferencesForItem($item->getId()); + if(!$ret) { + foreach ($preferences as $preference) { + if (preg_match('/thumbnail\|(\d+)/', + $preference['derivativeOperations'], $matches)) { + $thumbnailSize = $matches[1]; + $debugString.="Found thumbnail size in album preferences: $thumbnailSize
"; + break; + } + } } - } - } - if(!strcmp($debugOutput,"true")) { - print "Resizing thumbnail image to $thumbnailSize: $tmpFile -> $newTmpFile
"; + $debugString.="Resizing thumbnail image to $thumbnailSize: $tmpFile -> $newTmpFile
"; + $toolkit->performOperation($mimeType, 'resize', $tmpFile, $newTmpFile, + array($thumbnailSize,$thumbnailSize)); } - $toolkit->performOperation($mimeType, 'resize', $tmpFile, $newTmpFile, - array($thumbnailSize,$thumbnailSize)); - } + } + if(!strcmp($debugOutput,"true")) { + print "$debugString"; } /* Make the gallery2 call to add this item to the album */