• 大小: 6.79M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  RichTextBox  c  textbox  图像  

资源简介

此类功能网上很多例子,但转换效果极差,基本看不成。最近用到了这项功能,就写了一个示例。

本示例可将rtf内部文字和标准图像转换为自己可以设定的字体效果和大小的图像。


原理:
在自定义的RichTextBox组件输入文字和图像,对每个文字和图像建立坐标和内容
图像:
public class ImageStruct
    {
        public Point Img_Point;
        public int Img_Location;
        public Bitmap Img;

        public ImageStruct(Point _point, int _location, Bitmap _img)
        {
            Img_Point = _point;
            Img_Location = _location;
            Img = _img;
        }
    }
    public List<ImageStruct> ImageList = new List<ImageStruct>();

文字:
public class ContentStruct
    {
        public Point Content_Point;
        public string Content_Text;

        public ContentStruct(Point _point, string _text)
        {
            Content_Point = _point;
            Content_Text = _text;
        }
    }
    public List<ContentStruct> ContentList = new List<ContentStruct>();

转换时,在程序内部建立一个临时的RichTextBox组件(自定宽度,高度会自动计算),装入输入内容,
并计算自适应宽度和高度,然后取得临时RichTextBox内部文字、图像坐标,在一副bitmap上按照坐标绘制文字和图像。
绘制文字使用SQK_Ui.DLL,源码在http://www.haolizi.net/example/view_14426.html,修改源码可调节文字阴影透明度等,
也可以自行搜索DrawStrng用法。

 /// <summary>
        /// Rtf 转 图像
        /// </summary>
        /// <param name="Rtf_Message">Rtf 内容</param>
        /// <param name="_width">图像宽度</param>
        /// <param name="ch_Width">每个中文文字的宽度</param>
        /// <param name="en_Width">每个英文文字的宽度</param>
        /// <param name="img_Width">包含的固定样式图像的大小-宽度高度相同</param>
        /// <param name="TextColor">文字的颜色</param>
        /// <returns></returns>
        private Bitmap RtfToBitmap (string Rtf_Message, int _width, int ch_Width, int en_Width, int img_Width, Color TextColor)
        {
            RichTextEx Rich_tmp = new RichTextEx() // 临时Richbox 取得全部内容,重新设置字体
            {
                WordWrap = true,
                ScrollBars = RichTextBoxScrollBars.None,
                BorderStyle = BorderStyle.None,
                Height = 10
            };
            Rich_tmp.Rtf = Rtf_Message;
            Rich_tmp.SelectAll();
            Rich_tmp.SelectionColor = Color.FromArgb(255, 255, 255);
            Rich_tmp.SelectionFont = font;

            int havePic = Regex.Matches(Rich_tmp.Rtf, "Paint.Picture").Count; // 取得包含图像的数量
            MatchCollection haveTxt = Regex.Matches(Rich_tmp.Text, @"[\u4e00-\u9fa5]", RegexOptions.IgnoreCase | RegexOptions.Singleline); // 取得包含中文的数量
            int haveEn = Rich_tmp.Text.Length - haveTxt.Count; // 取得英文、数字、符号的数量
            if ((haveTxt.Count * ch_Width   havePic * img_Width   haveEn * en_Width) > _width) // 超过限定宽度,为设定的宽度
            {
                Rich_tmp.Width = _width;
            }
            else // 没超过限定,为实际宽度
            {
                Rich_tmp.Width = haveTxt.Count * ch_Width   havePic * img_Width   haveEn * en_Width; 
            }
            CSetLineSpace.SetLineSpace(Rich_tmp, 390); // 设定行间距
            Rich_tmp.updata(); // 刷新

            if (Rich_tmp.Lines.Length > 1) //如果有多行,获取行字数最多数的行,设置为图像宽度
            {
                RichTextEx Rich_branch = new RichTextEx()
                {
                    WordWrap = true,
                    ReadOnly = true,
                    BorderStyle = BorderStyle.None,
                    ScrollBars = RichTextBoxScrollBars.None,
                    Text = Rich_tmp.Text
                };
                for (int t = 0; t < Rich_tmp.ImageList.Count; t  ) // 将Rtf内的图像,替换为特殊符号“♐”,避免重复
                {
                    Rich_branch.Text = Rich_branch.Text.Remove(Rich_tmp.ImageList[t].Img_Location, 1);
                    Rich_branch.Text = Rich_branch.Text.Insert(Rich_tmp.ImageList[t].Img_Location, "♐");
                }
                MatchCollection haveZh, haveImg;
                int maxlen = 0, exchange;
                for (int i = 0; i < Rich_branch.Lines.Length; i  )
                {
                    haveZh = Regex.Matches(Rich_branch.Lines[i], @"[\u4e00-\u9fa5]", RegexOptions.IgnoreCase | RegexOptions.Singleline); // // Rtf内部中文数量
                    haveImg = Regex.Matches(Rich_branch.Lines[i], @"♐", RegexOptions.IgnoreCase | RegexOptions.Singleline); // Rtf内部图像的数量
                    exchange = (Rich_branch.Lines[i].Length - haveZh.Count - haveImg.Count) * en_Width   haveZh.Count * ch_Width   haveImg.Count * img_Width; // // Rtf内部英文、符号数量
                    if (exchange > _width)
                    {
                        maxlen = _width;
                        break;
                    }
                    if (maxlen < exchange) maxlen = exchange;
                }
                Rich_tmp.Width = maxlen;
                Rich_branch.Dispose();
            }

资源截图

代码片段和文件信息

using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Text.Regularexpressions;

namespace test9
{
    public partial class Form1 : Form
    {
        // 设置行间距
        public class CSetLineSpace
        {
            public const int WM_USER = 0x0400;
            public const int EM_GETPARAFORMAT = WM_USER + 61;
            public const int EM_SETPARAFORMAT = WM_USER + 71;
            public const long MAX_TAB_STOPS = 32;
            public const uint PFM_LINESPACING = 0x00000100;
            [StructLayout(LayoutKind.Sequential)]
            private struct PARAFORMAT2
            {
                public int cbSize;
                public uint dwMas

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    ..A..H.     55296  2018-04-04 11:57  test9\.vs\test9\v15\.suo

     文件          0  2018-04-02 14:40  test9\.vs\test9\v15\Server\sqlite3\db.lock

     文件     643072  2018-04-04 11:57  test9\.vs\test9\v15\Server\sqlite3\storage.ide

     文件        189  2018-04-02 14:40  test9\test9\App.config

     文件     266207  2018-04-04 11:46  test9\test9\bin\Debug\background.jpg

     文件      16614  2018-04-03 12:51  test9\test9\bin\Debug\face.png

     文件     638976  2018-03-31 19:26  test9\test9\bin\Debug\SQK_Ui.dll

     文件     275968  2018-04-04 11:52  test9\test9\bin\Debug\test9.exe

     文件        189  2018-04-02 14:40  test9\test9\bin\Debug\test9.exe.config

     文件      32256  2018-04-04 11:52  test9\test9\bin\Debug\test9.pdb

     文件   10828284  2012-04-26 09:53  test9\test9\bin\Debug\中文字体.ttf

     文件      11128  2018-04-04 11:52  test9\test9\Form1.cs

     文件       3090  2018-04-04 11:52  test9\test9\Form1.Designer.cs

     文件     392128  2018-04-04 11:52  test9\test9\Form1.resx

     文件        517  2018-04-02 14:40  test9\test9\Program.cs

     文件       1308  2018-04-02 14:40  test9\test9\Properties\AssemblyInfo.cs

     文件       2823  2018-04-02 14:40  test9\test9\Properties\Resources.Designer.cs

     文件       5612  2018-04-02 14:40  test9\test9\Properties\Resources.resx

     文件       1092  2018-04-02 14:40  test9\test9\Properties\Settings.Designer.cs

     文件        249  2018-04-02 14:40  test9\test9\Properties\Settings.settings

     文件       7526  2018-04-04 09:37  test9\test9\RichTextEx.cs

     文件       3837  2018-04-04 08:53  test9\test9\test9.csproj

     文件       1114  2018-04-02 14:40  test9\test9.sln

     目录          0  2018-04-04 11:57  test9\.vs\test9\v15\Server\sqlite3

     目录          0  2018-04-04 08:07  test9\.vs\test9\v15\Server

     目录          0  2018-04-04 08:07  test9\.vs\test9\v15

     目录          0  2018-04-04 11:46  test9\test9\bin\Debug

     目录          0  2018-04-04 08:47  test9\test9\bin\Release

     目录          0  2018-04-04 11:57  test9\test9\obj\Debug

     目录          0  2018-04-04 08:07  test9\.vs\test9

............此处省略9个文件信息

评论

共有 条评论