mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
bug:1791 display hd dimensions instead of websize dimensions
git-svn-id: http://piwigo.org/svn/trunk@10157 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -154,7 +154,7 @@ function get_metadata_attributes()
|
||||
{
|
||||
global $conf;
|
||||
|
||||
$update_fields = array('filesize', 'width', 'height', 'high_filesize');
|
||||
$update_fields = array('filesize', 'width', 'height', 'high_filesize', 'high_width', 'high_height');
|
||||
|
||||
if ($conf['use_exif'])
|
||||
{
|
||||
@@ -199,8 +199,13 @@ function get_element_metadata($file, $has_high = false)
|
||||
if ($has_high)
|
||||
{
|
||||
$high_file = dirname($file).'/pwg_high/'.basename($file);
|
||||
|
||||
$data['high_filesize'] = floor(filesize($high_file)/1024);
|
||||
|
||||
if ($high_size = @getimagesize($high_file))
|
||||
{
|
||||
$data['high_width'] = $high_size[0];
|
||||
$data['high_height'] = $high_size[1];
|
||||
}
|
||||
}
|
||||
|
||||
if ($conf['use_exif'])
|
||||
|
||||
Reference in New Issue
Block a user