openDpi static method

Pointer<TtfFont> openDpi(
  1. String file,
  2. int ptsize,
  3. int hdpi,
  4. int vdpi,
)

Implementation

static Pointer<TtfFont> openDpi(String file, int ptsize, int hdpi, int vdpi) {
  // 299
  return ttfOpenFontDpi(file, ptsize, hdpi, vdpi);
}