1// One inch equates to 914400 EMUs and a centimeter is 360000 one pixel equates to 9525
2// https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
3type Emu = u32;
45pub fn to_px(v: Emu) -> u32 {
6 v / 9525
7}
89pub fn from_px(v: Emu) -> u32 {
10 v * 9525
11}