65.9K
CodeProject is changing. Read more.
Home

Convert Text to Image

starIconstarIconstarIconstarIconstarIcon

5.00/5 (2 votes)

Nov 27, 2011

CPOL
viewsIcon

9483

downloadIcon

1

I'd like to offer a "funny" alternative by using a dummy TextBox. public static Bitmap GetPlainTextBitmap(string strText, Font font, Color colorBack, Color colorText, Size sizeTargetBitmap) { // Create a dummy TextBox TextBox txDummy = new TextBox(); ...

I'd like to offer a "funny" alternative by using a dummy TextBox.
public static Bitmap GetPlainTextBitmap(string strText, Font font, Color colorBack, Color colorText, Size sizeTargetBitmap)
        {
            // Create a dummy TextBox 
            TextBox txDummy = new TextBox();
            txDummy.BorderStyle = BorderStyle.None;
            txDummy.Multiline = true;
            // ... and initialize with the given parameters
            txDummy.Size = sizeTargetBitmap;
            txDummy.Text = strText;
            txDummy.Font = font;
            txDummy.BackColor = colorBack;
            txDummy.ForeColor = colorText;

            // Now just draw the dummy TextBox to an bitmap
            Bitmap bmp = new Bitmap(txDummy.Width, txDummy.Height);
            txDummy.DrawToBitmap(bmp, txDummy.ClientRectangle);

            return bmp;
        }