if (unit.equals("in"))
dvalue = dvalue * 72;
else if (unit.equals("cm"))
- dvalue = dvalue * 28.35;
+ dvalue = dvalue * 28.3464567;
else if (unit.equals("mm"))
- dvalue = dvalue * 2.84;
+ dvalue = dvalue * 2.83464567;
else if (unit.equals("pt"))
dvalue = dvalue;
else if (unit.equals("pc"))
* Returns a customized the pixel to mm factor.
*/
public float getPixelToMM() {
- return 0.264583333333333333333f; // 72 dpi
+ // this is set to 72dpi as the values in fo are 72dpi
+ return 0.35277777777777777778f; // 72 dpi
+ // return 0.26458333333333333333333333333333f; // 96dpi
}
/**
* Returns a customized the pixel to mm factor.
*/
public float getPixelToMM() {
- return 0.264583333333333333333f; // 72 dpi
+ // this is set to 72dpi as the values in fo are 72dpi
+ return 0.3527777777777777778f; // 72 dpi
+ // return 0.26458333333333333333333333333333f; // 96dpi
}
/**