如题,如何将Richtextbox中的图片提取出来, 再保存为另外一张图片?

解决方案 »

  1.   

    你需要了解rtf格式,先看看这方面的资料。
      

  2.   

    已经自己研究出解决方案了,谢谢各位
     txtRTF.SelectAll();
                    txtRTF.Copy();
                    Image img1 = (Image)Clipboard.GetData(System.Windows.Forms.DataFormats.Bitmap);
                    if (img1 != null)
                        img1.Save(Application.ExecutablePath + "a.bmp");