static androidPoint2Emr(point: Point, pageSize: { width: number; height: number }): Point;
Point:转换后的 EMR 坐标点
示例
import { PointUtils, type Point } from 'sn-plugin-lib';
/**
* 将像素点转换为 EMR 点的示例。
*/
export async function exampleAndroidPoint2Emr() {
const point: Point = { x: 100, y: 200 };
const pageSize = { width: 1404, height: 1872 };
return PointUtils.androidPoint2Emr(point, pageSize);
}