Eigene Schriftart erstellen am iPad
Findet Ihr es auch so spannend, Eure eigenen Schriftarten / Fonts zu entwerfen? Man was hatte ich früher Spaß, am C-64. Ich hatte…
Installing/Removing Fonts
Installing/Removing Fonts: AddFontResource(Path+\FileName.TTF’); // to add font to system SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0); //to notify that fonts are changed. you can use: RemoveFontResource(Path+’Data\FileName.TTF’);…
Write all Font-Styles to the registry
Q: How to write all Font-Styles to the registry? A: True, but why handle the set elements in the first place? The following…
Fonts: 3D Text
Called like so : imgPaintCanvas(Image3.Canvas, ‘0’, 10, 6, 4); [code lang=”delphi”]procedure TForm1.imgPaintCanvas(TheCanvas : TCanvas; TheString : String; TheFontSize, UCorner, LCorner : Integer); Begin…
Fonts: Anti-Aliasing Text
Of course it is slower than non-antialiased text. So it is important to optimize the routine. Here is some part of the routine…
Fonts: Antialiased Font
Chris, Thanks, tried this and works fine. Dave Parsons Simply Software To make the Canvas’s current font antialiased (remember it must be a…
Fonts: Rotate Font
> I was wondering if anyone knows how to draw curved or wavy text. >I’d like to be able to draw some text…
Fonts: Rotated Fonts
[code lang=”delphi”]//Rotating fonts is a straight forward process, so long as the Windows font // mapper can supply a rotated font based on…