Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
LazUtils
»
[LazFreeType] How to read information from a font file?
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
kernel 6.8 and checking s...
by
robert rozee
[
Today
at 05:18:47 pm]
How much would it hamper ...
by
Martin_fr
[
Today
at 05:01:02 pm]
Api/component pack for Ra...
by
MarkMLl
[
Today
at 04:47:33 pm]
compiler messages suggest...
by
Thaddy
[
Today
at 04:15:17 pm]
Wrong resolution of secon...
by
Apiglio
[
Today
at 03:13:47 pm]
Benchmarks
by
Warfley
[
Today
at 02:00:39 pm]
Breakpoint dosn't work
by
Martin_fr
[
Today
at 01:13:30 pm]
[Solved]I have created dl...
by
Packs
[
Today
at 01:11:27 pm]
TLazSerial : serial port ...
by
tetrastes
[
Today
at 12:26:29 pm]
Common File Dialogs Have ...
by
rvk
[
Today
at 10:39:59 am]
Bright color
by
Warfley
[
Today
at 10:29:06 am]
Inversive Geometry Curves...
by
Boleeman
[
Today
at 09:18:47 am]
[Solved] pointer to out o...
by
440bx
[
Today
at 12:51:22 am]
storing string
by
ASerge
[December 04, 2024, 11:06:57 pm]
Show Form at Top
by
n7800
[December 04, 2024, 10:16:21 pm]
Arrow keys in FV
by
HotShoe
[December 04, 2024, 10:04:56 pm]
"Active $IFDEF code" is r...
by
MarkMLl
[December 04, 2024, 09:49:15 pm]
NSHapticFeedbackPerformer
by
msintle
[December 04, 2024, 09:47:25 pm]
[SOLVED] Howto use a DEFI...
by
MarkMLl
[December 04, 2024, 09:43:08 pm]
Use tts0, This example is...
by
coradi
[December 04, 2024, 09:37:12 pm]
Library for XSLT 2.0 Tran...
by
ebizz
[December 04, 2024, 06:54:35 pm]
How to know when dragging...
by
Aistis
[December 04, 2024, 06:41:46 pm]
Problem with Hints
by
Handoko
[December 04, 2024, 04:37:21 pm]
SetLength fall
by
LemonParty
[December 04, 2024, 03:29:35 pm]
Feature Request for TMapV...
by
EkkehardDomning
[December 04, 2024, 03:23:27 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [LazFreeType] How to read information from a font file? (Read 11310 times)
felipemdc
Administrator
Hero Member
Posts: 3538
[LazFreeType] How to read information from a font file?
«
on:
March 06, 2012, 01:11:09 pm »
It would be great to have an example on that, thanks
«
Last Edit: March 06, 2012, 01:48:10 pm by felipemdc
»
Logged
zeljko
Hero Member
Posts: 1668
Re: [LazFreeType] How to read information from a font file?
«
Reply #1 on:
March 10, 2012, 02:22:41 pm »
I guess that such code exists in fontconfig source.
Logged
felipemdc
Administrator
Hero Member
Posts: 3538
Re: [LazFreeType] How to read information from a font file?
«
Reply #2 on:
March 11, 2012, 09:56:01 am »
But LCL-CustomDrawn uses non-native text in multiple operating systems where fontconfig does not exist (Windows, Mac OS X, Android). I was hoping that circular would know the answer.
Logged
felipemdc
Administrator
Hero Member
Posts: 3538
Re: [LazFreeType] How to read information from a font file?
«
Reply #3 on:
March 11, 2012, 11:24:42 am »
Ok, so I will answer my own question. Guiliano Colla found out how to do this and he sent me a patch, and here it is:
http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/lcl/interfaces/customdrawn/customdrawnproc.pas?root=lazarus&r1=35879&r2=35878&pathrev=35879
I think that the most important part is:
TT_Get_Name_String(AFace,J,NameString,NameLen);
Which is part of LazFreeType. But in general the entire routine there is a nice example of how to extract font information with LazFreeType
Logged
zeljko
Hero Member
Posts: 1668
Re: [LazFreeType] How to read information from a font file?
«
Reply #4 on:
March 11, 2012, 04:17:25 pm »
I didn't mean that you'll use fontconfig, but to see in source how it is extracted.
Logged
circular
Hero Member
Posts: 4356
Re: [LazFreeType] How to read information from a font file?
«
Reply #5 on:
March 23, 2012, 05:13:10 pm »
There are now properties Ascent, Descent, LineSpacing and FullLineHeight in TFreeTypeFont.
About the name, apparently, it can be in many languages. Maybe we can use English name only for now.
Logged
Conscience is the debugger of the mind
circular
Hero Member
Posts: 4356
Re: [LazFreeType] How to read information from a font file?
«
Reply #6 on:
March 24, 2012, 08:27:47 pm »
I've found how to get names. Soon I will put here a test program that reads a directory of fonts.
Logged
Conscience is the debugger of the mind
circular
Hero Member
Posts: 4356
Re: [LazFreeType] How to read information from a font file?
«
Reply #7 on:
March 24, 2012, 08:40:30 pm »
Here is a test program that allows to explore a directory of fonts. This mechanism will be directly included in LazFreeType later.
Note : you need to use the second patch of LazFreeType.
Logged
Conscience is the debugger of the mind
circular
Hero Member
Posts: 4356
Re: [LazFreeType] How to read information from a font file?
«
Reply #8 on:
April 12, 2012, 04:19:56 pm »
Here is an updated version.
Logged
Conscience is the debugger of the mind
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
LazUtils
»
[LazFreeType] How to read information from a font file?
TinyPortal
© 2005-2018