当前位置: 首页>>代码示例>>C#>>正文


C# Font.GetMaxCharBounds方法代码示例

本文整理汇总了C#中Font.GetMaxCharBounds方法的典型用法代码示例。如果您正苦于以下问题:C# Font.GetMaxCharBounds方法的具体用法?C# Font.GetMaxCharBounds怎么用?C# Font.GetMaxCharBounds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Font的用法示例。


在下文中一共展示了Font.GetMaxCharBounds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: resizeToFitText

    /**
     * Adjust the size of the TextShape so it encompasses the text inside it.
     *
     * @return a <code>Rectangle2D</code> that is the bounds of this <code>TextShape</code>.
     */
    public Rectangle2D resizeToFitText(){
        String txt = GetText();
        if(txt == null || txt.Length == 0) return new Rectangle2D.Float();

        RichTextRun rt = GetTextRun().GetRichTextRuns()[0];
        int size = rt.GetFontSize();
        int style = 0;
        if (rt.IsBold()) style |= Font.BOLD;
        if (rt.IsItalic()) style |= Font.ITALIC;
        String fntname = rt.GetFontName();
        Font font = new Font(fntname, style, size);

        float width = 0, height = 0, leading = 0;
        String[] lines = txt.split("\n");
        for (int i = 0; i < lines.Length; i++) {
            if(lines[i].Length == 0) continue;

            TextLayout layout = new TextLayout(lines[i], font, _frc);

            leading = Math.max(leading, layout.GetLeading());
            width = Math.max(width, layout.GetAdvance());
            height = Math.max(height, (height + (layout.GetDescent() + layout.GetAscent())));
        }

        // add one character to width
        Rectangle2D charBounds = font.GetMaxCharBounds(_frc);
        width += GetMarginLeft() + GetMarginRight() + charBounds.Width;

        // add leading to height
        height += GetMarginTop() + GetMarginBottom() + leading;

        Rectangle2D anchor = GetAnchor2D();
        anchor.SetRect(anchor.GetX(), anchor.GetY(), width, height);
        SetAnchor(anchor);

        return anchor;
    }
开发者ID:ctddjyds,项目名称:npoi,代码行数:42,代码来源:TextShape.cs


注:本文中的Font.GetMaxCharBounds方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。