I need to sraw a string to a bitmap with full justified. I know that StringFormat.Alignment doesn't support full justified alignment. So, I'm looking for a solution to draw a string on a bitmap with full-justify. RictTextBox has full justify but I think it uses WinAPI to justify the text. Maybe I can draw the text with RichTextBox but I don't know how to get the controls bitmap(screenshot) without displaying in the form. Is there any trick or an alternative 3rd party library to System.Drawing.Graphics?

link|improve this question

Winforms or WPF? – kenny Oct 10 '11 at 13:37
Winforms....... – oruchreis Oct 28 '11 at 14:03
feedback

2 Answers

up vote 2 down vote accepted

I used a method to draw RichTextBox on a bitmap.

public class ExtendedRichTextBox : RichTextBox
{
    private const double inch = 1440 / 96;//Not 14.4!!, believe me you can see someone use 1.44 but it doesn't work on big bitmaps. They round the 1440/96 as 14.4 but it works on only small sized works. use /96

    public void DrawToBitmap(Graphics graphics, Rectangle bound)
    {
        Update();  // Ensure RTB fully painted
        IntPtr hDC = graphics.GetHdc();
        FORMATRANGE fmtRange;

        RECT rect;
        rect.Left = (int)Math.Ceiling(bound.X * inch);
        rect.Top = (int)Math.Ceiling(bound.Y * inch);
        rect.Right = (int)Math.Ceiling(bound.Right * inch);
        rect.Bottom = (int)Math.Ceiling(bound.Bottom * inch);
        int fromAPI;

        fmtRange.hdc = hDC;
        fmtRange.hdcTarget = hDC;

        fmtRange.chrg.cpMin = 0;
        fmtRange.chrg.cpMax = -1;
        fmtRange.rc = rect;
        fmtRange.rcPage = rect;

        IntPtr lParam = Marshal.AllocCoTaskMem(Marshal.SizeOf(fmtRange));
        Marshal.StructureToPtr(fmtRange, lParam, false);
        fromAPI = SendMessage(Handle, EM_FORMATRANGE, 0, lParam);
        fromAPI = SendMessage(Handle, EM_FORMATRANGE, 1, lParam);
        Marshal.FreeCoTaskMem(lParam);
        fromAPI = SendMessage(Handle, EM_FORMATRANGE, 0, new IntPtr(0));
        graphics.ReleaseHdc(hDC);
    }
}

You can find WinApi implementations on pinvoke website. But you can take here too:

[DllImport("USER32.dll")]
private static extern Int32 SendMessage(IntPtr hWnd, int msg, int wParam, IntPtr lParam);
private const int WM_USER = 0x400;
private const int EM_FORMATRANGE = WM_USER + 57;
[StructLayout(LayoutKind.Sequential)]
private struct RECT
{
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
}

[StructLayout(LayoutKind.Sequential)]
private struct CHARRANGE
{
    public int cpMin;
    public int cpMax;
}

[StructLayout(LayoutKind.Sequential)]
private struct FORMATRANGE
{
    public IntPtr hdc;
    public IntPtr hdcTarget;
    public RECT rc;
    public RECT rcPage;
    public CHARRANGE chrg;
}

And here is the example of using.

var richtext = new ExtendedRichTextBox(); 
/*I've implemented a RichTextBox but it isn't realted with this question. 
You can use simply RichTextBox. ExtendedRichTextBox has support rtl.*/

richtext.Font = font;
richtext.ForeColor = textColor;
richtext.Text = sometext;
richtext.SelectAll();
richtext.RightToLeft = rtl;
richtext.SelectionAlignment = align;

//Fix the rtl bug in RichTextBox
if (rtl == RightToLeft.Yes)
{
    if (align == TextAlign.Center)
        richtext.Rtf = richtext.Rtf.Replace(@"\qr", @"\qc");
    else if (align == TextAlign.Left)
        richtext.Rtf = richtext.Rtf.Replace(@"\qr", @"\ql");
    else if (align == TextAlign.Justify)
        richtext.Rtf = richtext.Rtf.Replace(@"\qr", @"\qj");
}

//textRect is where we want to put text in.
var tempBitmap = new Bitmap(textRect.Width, textRect.Height);
richtext.DrawToBitmap(Graphics.FromImage(tempBitmap), tempRect);
tempBitmap.MakeTransparent(richtext.BackColor);
graph.DrawImage(tempBitmap, panelRect.X, panelRect.Y);
link|improve this answer
feedback

I'm not aware of any API or flag you can use to justify text. I think you just have to do it yourself:

private void panel1_Paint(object sender, PaintEventArgs e)
{
  string text = "Justified!";
  int textWidth = TextRenderer.MeasureText(e.Graphics, text, panel1.Font, panel1.ClientSize, TextFormatFlags.NoPadding).Width;
  int textGap = ((panel1.ClientSize.Width - 4) - textWidth) / (text.Length - 1);
  int textLeft = 0;
  foreach (char c in text)
  {
    TextRenderer.DrawText(e.Graphics, c.ToString(), panel1.Font, new Point(textLeft, 0), Color.Black, Color.Empty);
    textLeft += TextRenderer.MeasureText(e.Graphics, c.ToString(), panel1.Font, panel1.ClientSize, TextFormatFlags.NoPadding).Width + textGap;
  }
}

No error checking. Refactor as needed.

link|improve this answer
I tried your code. But it rendered the text very thick. I think there is an anti-aliasing problem when rendering. I could draw a richtextbox to a bitmap, it gives me the justified text. But this time if I set it's background as transparent with WS_EX_TRANSPARENT, it renders text thick, too. It accepts that the background color is black when applying anti-aliasing to text. I haven't find a true solution yet. – oruchreis Oct 10 '11 at 17:42
@oruchreis You didn't mark if this was WinForms or something else--this was a simple WinForms hack. Check what font you have in panel1, or just use whatever font you want. I would solve that problem before worrying about any transparency issues. For anti-aliasing, just set e.Graphics.SmoothMode = AntiAlias. – LarsTech Oct 10 '11 at 17:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.