LoadFontFromImage method
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(),
),
),
);