Searched refs:toPoints (Results 1 – 11 of 11) sorted by relevance
/plugin/odt/ODT/elements/ |
H A D | ODTElementTable.php | 326 $value = $params->document->toPoints($value, 'y'); 329 $value = $params->document->toPoints($value, 'y'); 333 $value = $params->document->toPoints($value, 'y'); 348 … $table_width = $params->units->getDigits ($params->units->toPoints($this->own_max_width)); 363 … $maxPageWidthPt = $params->units->getDigits ($params->units->toPoints($maxPageWidth.'cm')); 370 $leftMarginPt = $params->units->getDigits ($params->units->toPoints($leftMargin)); 378 $rightMarginPt = $params->units->getDigits ($params->units->toPoints($rightMargin)); 384 $widthPt = $params->units->getDigits ($params->units->toPoints($width)); 433 … $maxPageWidth = $params->units->getDigits ($params->units->toPoints($maxPageWidth.'cm')); 490 $width = $params->document->toPoints($width, 'x'); [all …]
|
H A D | ODTElementFrame.php | 52 $width = $params->units->toPoints($width); 165 $width = $params->units->getDigits ($params->units->toPoints($this->own_max_width)); 182 $leftMarginPt = $params->units->getDigits ($params->units->toPoints($leftMargin)); 190 $rightMarginPt = $params->units->getDigits ($params->units->toPoints($rightMargin)); 197 $maxWidthPt = $params->units->getDigits ($params->units->toPoints($maxWidth.'cm')); 202 $maxWidthPt = $params->units->getDigits ($params->units->toPoints($maxWidth)); 209 $widthPt = $params->units->getDigits ($params->units->toPoints($width));
|
/plugin/odt/helper/ |
H A D | units.php | 162 public function toPoints ($value, $axis = 'y') { function in helper_plugin_odt_units 163 return $this->internal->toPoints ($value, $axis);
|
/plugin/odt/ODT/ |
H A D | ODTUnits.php | 164 public function toPoints ($value, $axis = 'y') { function in ODTUnits 222 $value = self::toPoints ($value, $axis); 247 $value = self::toPoints ($value, $axis);
|
H A D | ODTDocument.php | 234 $adjusted = $this->toPoints($value, 'x'); 245 $adjusted = $this->toPoints($value, 'y'); 258 $adjusted = $this->toPoints($value, 'y'); 261 $adjusted = $this->toPoints($value, 'y'); 273 $adjusted = $this->toPoints($value, 'y'); 1870 public function toPoints ($value, $axis = 'y') { function in ODTDocument 1871 return $this->units->toPoints ($value, $axis); 2207 $valueInPt = $this->units->toPoints($value, 'y'); 2209 $addInPt = $this->units->toPoints($add, 'y'); 2215 $valueInPt = $this->units->toPoints($value, 'y'); [all …]
|
H A D | ODTUtility.php | 360 $maxWidthInPt = $units->toPoints($maxWidth, 'y'); 376 $base_font_size_in_pt = $units->toPoints($base_font_size_in_pt, 'y'); 385 $properties ['font-size'] = $units->toPoints($properties ['font-size'], 'y'); 448 $part = $units->toPoints($part, 'y'); 453 $part = $units->toPoints($part, 'y');
|
H A D | ODTImage.php | 207 $width = $params->document->toPoints($width, 'x').'pt'; 208 $height = $params->document->toPoints($height, 'y').'pt';
|
H A D | ODTTable.php | 409 $properties ['width'] = $params->document->toPoints($properties ['width'], 'x'); 599 $width = $params->document->toPoints($width, 'x');
|
H A D | ODTFrame.php | 255 $pic_positions [0] = $params->document->toPoints($pic_positions [0], 'x');
|
/plugin/odt/ODT/css/ |
H A D | cssimportnew.php | 1185 $base_font_size_in_pt = $units->toPoints($base_font_size_in_pt, 'y'); 1199 $properties ['font-size'] = $units->toPoints($properties ['font-size'], 'y');
|
/plugin/odt/renderer/ |
H A D | page.php | 2022 return $this->document->toPoints($pixel, 'x'); 2034 return $this->document->toPoints($pixel, 'y');
|