I have an application that writes text onto images using System.Drawing
(C#).
I am using specific fonts to do this.
Since I can't rely on my shared hosting servers to have all the custom fonts I may need (and since the list of fonts is likely to grow), how can I manage the fonts used for my application?
Could I include .ttf
files in my project and reference them somehow?
What about a SQL database containing fonts?