Any ideas how to save a string with any font as an svg image?
I mean we can write a string to an image and save it, something like this:
Bitmap bitmap = new Bitmap(1, 1);
Graphics graphics = Graphics.FromImage(bitmap);
//..
graphics.DrawString(myString, myFont, /*...*/);
bitmap.Save(@"somewhere");
Can I save a string with a font as svg image too?