From 4a73d939e03ea8d57719f52681dd919dc106ed5f Mon Sep 17 00:00:00 2001 From: rvelices Date: Thu, 26 Jan 2012 21:15:16 +0000 Subject: feature 2548 multisize - small fixes git-svn-id: http://piwigo.org/svn/trunk@12958 68402e56-0260-453c-a942-63ccdbb3a9ee --- i.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'i.php') diff --git a/i.php b/i.php index 225c087a0..ea521b90a 100644 --- a/i.php +++ b/i.php @@ -73,20 +73,20 @@ function ilog() if (!mkgetdir($dir) or ! ($ilogfh=fopen($dir.'i.log', 'a')) ) return; } - fwrite($ilogfh, date("c") ); + $line = date("c"); foreach( func_get_args() as $arg) { - fwrite($ilogfh, ' ' ); + $line .= ' '; if (is_array($arg)) { - fwrite($ilogfh, implode(' ', $arg) ); + $line .= implode(' ', $arg); } else { - fwrite($ilogfh, $arg); + $line .= $arg; } } - fwrite($ilogfh, "\n"); + fwrite($ilogfh, $line."\n"); } function ierror($msg, $code) @@ -396,6 +396,10 @@ if (!$changes) ierror( $page['src_url'], 301); } +if ($d_size[0]*$d_size[1] < 100000) +{// strip metadata for small images + $image->strip(); +} $image->set_compression_quality( $params->quality ); $image->write( $page['derivative_path'] ); $image->destroy(); -- cgit v1.2.3