> ## Documentation Index
> Fetch the complete documentation index at: https://docs.supernote.com/llms.txt
> Use this file to discover all available pages before exploring further.

# emrPoint2Android

> Convert an EMR coordinate point to a screen pixel point.

```ts theme={null}
static emrPoint2Android(point: Point, pageSize: { width: number; height: number }): Point;
```

**Parameters**

| Parameter  | Type                                                      | Description          |
| ---------- | --------------------------------------------------------- | -------------------- |
| `point`    | [`Point`](/en/api-reference/supernote-plugin/types/point) | EMR coordinate point |
| `pageSize` | [`Size`](/en/api-reference/supernote-plugin/types/size)   | Page pixel size      |

**Returns**

* [`Point`](/en/api-reference/supernote-plugin/types/point): converted screen pixel point

## Example

```ts wrap theme={null}
import { PointUtils, type Point } from 'sn-plugin-lib';

/**
 * Example: convert an EMR point to a pixel point.
 */
export async function exampleEmrPoint2Android() {
 const point: Point = { x: 15819, y: 11864 };
 const pageSize = { width: 1404, height: 1872 };

 return PointUtils.emrPoint2Android(point, pageSize);
}
```
