How to generate an image from text on fly at runtime
Ok, assuming you want to draw a string on an image in C#, you are going to need to use the System.Drawing namespace here: private Image DrawText(String text, Font font, Color textColor, Color backColor) { //first, create a dummy bitmap just to get a graphics object Image img = new Bitmap(1, 1); Graphics drawing = … Read more