From 618c983b9d9b265be214943c146364bae56307b9 Mon Sep 17 00:00:00 2001 From: flop25 Date: Sun, 8 Jul 2012 17:16:41 +0000 Subject: merge r16507 from branch 2.4 to trunk bug:2683 create get_size_css git-svn-id: http://piwigo.org/svn/trunk@16508 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/derivative.inc.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/derivative.inc.php b/include/derivative.inc.php index a3b944e72..d19b5a1b8 100644 --- a/include/derivative.inc.php +++ b/include/derivative.inc.php @@ -314,6 +314,15 @@ final class DerivativeImage return $this->params->compute_final_size($this->src_image->get_size()); } + function get_size_css() + { + $size = $this->get_size(); + if ($size) + { + return 'width:'.$size[0].'px; height:'.$size[1].'px'; + } + } + function get_size_htm() { $size = $this->get_size(); -- cgit v1.2.3