Jump to content

Extracting Font Name out of TTF file


Recommended Posts

Anyone know how to do this?

#Include <WinAPI.au3>

Global Const $QFR_DESCRIPTION = 1

Global $sFont = 'C:\MyFont.ttf'
Global $tData = DllStructCreate('wchar[260]')

DllCall('gdi32.dll', 'int', 'AddFontResource', 'str', $sFont)
DllCall('gdi32.dll', 'int', 'GetFontResourceInfoW','wstr', $sFont, 'int*', DllStructGetSize($tData), 'ptr', DllStructGetPtr($tData), 'int', $QFR_DESCRIPTION)
DllCall('gdi32.dll', 'int', 'RemoveFontResource', 'str', $sFont)

ConsoleWrite(DllStructGetData($tData, 1) & @CR)
Edited by Yashied
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...