繁体   English   中英

拉绳粗体和普通文本

[英]drawstring bold and normal text

有代码:

using (Graphics g = Graphics.FromImage(pictureBox1.Image))
            {

                Font drawFont = new Font("Arial", 12);
                Font drawFontBold = new Font("Arial", 12, FontStyle.Bold);
                SolidBrush drawBrush = new SolidBrush(Color.Black);
                g.DrawString("this is normal", drawFont, drawBrush, new RectangleF(350f, 250f, 647, 200));
                g.DrawString(" and this is bold text", drawFontBold, drawBrush, new RectangleF(350f, 250f, 647, 200));
            }

我需要得到

这是正常的,这是粗体文本

但是我在第一个收到第二个文本的叠加

试试这个代码,可能会做的工作。!!!

using (Graphics g = Graphics.FromImage(pictureBox1.Image))
{
    Font drawFont = new Font("Arial", 12);
    Font drawFontBold = new Font("Arial", 12, FontStyle.Bold);
    SolidBrush drawBrush = new SolidBrush(Color.Black);

    // find the width of single char using selected fonts
    float CharWidth = g.MeasureString("Y", drawFont).Width;

    // draw first part of string
    g.DrawString("this is normal", drawFont, drawBrush, new RectangleF(350f, 250f, 647, 200));

    // now get the total width of words drawn using above settings
    float widthFirst = ("this is normal").Length() * CharWidth;

    // the width of first part string to start of second part to avoid overlay
    g.DrawString(" and this is bold text", drawFontBold, drawBrush, new RectangleF(350f + widthFirst, 250f, 647, 200));
}

我建议使用:

    float widthFirst = g.MeasureString("this is normal", drawFont).Width;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM