Minor fix. If conversion factor from pointToPixel is 1.333333, then the

conversion factor for PixelTopoint should be 0.75
This commit is contained in:
Bas-Jan 't Jong 2014-05-11 09:16:36 +02:00
parent 9567c6a972
commit afc3d5cb64
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class Drawing
*/
public static function pixelsToPoints($value = 0)
{
return $value * 0.67777777;
return $value * 0.75;
}
/**