How can you select the specific style of a font with multiple * .otf files?
The font in question has several files:
Thin
Thin Italic
Extra-Light
Extra-Light Italic
Light
Light Italic
Regular
Regular Italic
Medium
Medium Italic
Semi-Bold
Semi-Bold Italic
Bold
Bold Italic
Extra-Bold
Extra-Bold Italic
Black
Black Italic
But after doing several tests I can recall the font like this, without being able to specify the precise style:
Local $hFamily = _GDIPlus_FontFamilyCreate("Poppins") ;
Local $hFont = _GDIPlus_FontCreate($hFamily, 95, 1+2, 3) ;
Example I cannot therefore select "Poppins Black Italic"
but only "Poppins"
Thank you