You are here

public static function PHPExcel_Shared_Drawing::pixelsToPoints in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php \PHPExcel_Shared_Drawing::pixelsToPoints()

* Convert pixels to points * *

Parameters

int $pValue Value in pixels: * @return int Value in points

1 call to PHPExcel_Shared_Drawing::pixelsToPoints()
PHPExcel_Writer_HTML::buildCSS in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php
* Build CSS styles * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php, line 130

Class

PHPExcel_Shared_Drawing
PHPExcel_Shared_Drawing

Code

public static function pixelsToPoints($pValue = 0) {
  return $pValue * 0.6777777699999999;
}