LoadFontFromImage method

FontD LoadFontFromImage(
  1. ImageD image,
  2. ColorD key,
  3. num firstChar
)

Implementation

FontD LoadFontFromImage(
  ImageD image,
  ColorD key,
  num firstChar,
) => run(
  () => 'LoadFontFromImage($image, $key, $firstChar)',
  () => _refCaptureFont(
    'LoadFontFromImage_${image.internalId}',
    rl.Core.LoadFontFromImage(
      _refImage1(image).ref,
      _refColor1(key).ref,
      firstChar.toInt(),
    ),
  ),
);