mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 03:09:58 +03:00
feature 2548 multisize - small fixes
git-svn-id: http://piwigo.org/svn/trunk@12958 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
4f216a5cac
commit
4a73d939e0
4 changed files with 18 additions and 10 deletions
14
i.php
14
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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue