From 3ac30a24b9de9d287a98f49d4af41e76bf4d58c3 Mon Sep 17 00:00:00 2001 From: Shish Date: Wed, 26 Jan 2011 17:20:46 +0000 Subject: [PATCH] remove extra debug --- ext/handle_pixel/main.php | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/handle_pixel/main.php b/ext/handle_pixel/main.php index 87ac40e8..665fae17 100644 --- a/ext/handle_pixel/main.php +++ b/ext/handle_pixel/main.php @@ -88,7 +88,6 @@ class PixelFileHandler extends DataHandlerExtension { if($size[1] > $size[0]*5) $size[1] = $size[0]*5; // running the call with cmd.exe requires quoting for our paths - log_debug("handle_pixel", "cropping to {$size[0]}x{$size[1]} first"); $format = '"%s" "%s[0]" -crop %ux%u +repage -flatten -strip -thumbnail %ux%u jpg:"%s"'; $cmd = sprintf($format, $convert, $inname, $size[0], $size[1], $w, $h, $outname); exec($cmd, $output, $ret);