feature 2548 multisize - small fixes

git-svn-id: http://piwigo.org/svn/trunk@12958 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices 2012-01-26 21:15:16 +00:00
parent 4f216a5cac
commit 4a73d939e0
4 changed files with 18 additions and 10 deletions

14
i.php
View file

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