c# winform richtextbox将图片插入数据库、读取数据库显示图片

1)将图片插入数据库

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace RichTextBoxDemo
{
    public partial class Form1 : Form
    {
        private DataClasses1DataContext dcdc = new DataClasses1DataContext();
        public Form1()
        {
            InitializeComponent();
        }
        /// <summary>
        /// 将图片添加到richtextbox
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnInputImage_Click(object sender, EventArgs e)
        {
            OpenFileDialog fileDialog = new OpenFileDialog();
            fileDialog.Filter = "Image Files(*.jpg;*.gif)|*.jpg;*.gif";
            if (fileDialog.ShowDialog() == DialogResult.OK)
            {
                string path = fileDialog.FileName;
                Clipboard.SetDataObject(Image.FromFile(path), false);
                richTextBox1.Paste();
            }
        }
        /// <summary>
        /// 将图片添加到数据库
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnSubmit_Click(object sender, EventArgs e)
        {
            //将richtextbox中的内容转化正byte数组并在中间加|添加到数据库
            StringBuilder sb = new StringBuilder();
            byte[] bytes = Encoding.Default.GetBytes(richTextBox1.Rtf);
            foreach (byte b in bytes)
            {
                sb.Append(b + "|");
            }
            Table_1 item=new Table_1();
            item.Content = sb.ToString();
            dcdc.Table_1.InsertOnSubmit(item);
            dcdc.SubmitChanges();
        }
        private void btnView_Click(object sender, EventArgs e)
        {
            Form2 fm = new Form2();
            fm.ShowDialog();
        }
    }
}


2)读取数据库显示图片

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace RichTextBoxDemo
{
    public partial class Form2 : Form
    {
        private DataClasses1DataContext dcdc = new DataClasses1DataContext();
        public Form2()
        {
            InitializeComponent();
        }
        /// <summary>
        /// 将图片从数据库中读取
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Form2_Load(object sender, EventArgs e)
        {
            //将string以|拆分赋值给byte数组并转化成string在richtextbox中显示
            Table_1 item = dcdc.Table_1.SingleOrDefault(u => u.id == 11);
            if (item.Content != null)
            {
                string[] strs = item.Content.Split('|');
                int length = strs.Length;
                byte[] bytes = new byte[length];
                for (int i = 0; i < length; i++)
                {
                    if (strs[i].Trim().Length > 0)
                    {
                        bytes[i] = Convert.ToByte(strs[i]);
                    }
                }
                if (bytes != null)
                {
                    richTextBox1.Rtf = Encoding.Default.GetString(bytes);
                }
            }
        }
    }
}


  • 3
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值