From 1acc2abaf73aca4b3879659a55cdf98be18c2fee Mon Sep 17 00:00:00 2001 From: stan <stan@e3e1d417-86f3-4887-817a-d78f3d33393f> Date: Thu, 23 Mar 2006 18:10:04 +0000 Subject: [PATCH] Added quiet flags to netpbm utils. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1879 e3e1d417-86f3-4887-817a-d78f3d33393f --- web/zm_funcs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/zm_funcs.php b/web/zm_funcs.php index b0ee4f833..cb96ab105 100644 --- a/web/zm_funcs.php +++ b/web/zm_funcs.php @@ -955,7 +955,7 @@ function getImageSrc( $event, $frame, $scale, $capture_only=false, $overwrite=fa { if ( ZM_WEB_SCALE_THUMBS ) { - $command = ZM_PATH_NETPBM."/jpegtopnm -dct fast $image_path | ".ZM_PATH_NETPBM."/pnmscalefixed $fraction | ".ZM_PATH_NETPBM."/ppmtojpeg --dct=fast > $thumb_path"; + $command = ZM_PATH_NETPBM."/jpegtopnm -quiet -dct fast $image_path | ".ZM_PATH_NETPBM."/pnmscalefixed -quiet $fraction | ".ZM_PATH_NETPBM."/pnmtojpeg -quiet -dct=fast > $thumb_path"; exec( $command ); } else