栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

C#实现字符串与图片的Base64编码转换操作示例

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C#实现字符串与图片的Base64编码转换操作示例

本文实例讲述了C#实现字符串与图片的base64编码转换操作。分享给大家供大家参考,具体如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Drawing.Imaging;
namespace base64_img
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    //图片 转为  base64编码的文本
    private void button1_Click(object sender, EventArgs e)
    {
      OpenFileDialog dlg = new OpenFileDialog();
      dlg.Title = "选择要转换的图片";
      dlg.Filter = "Image files (*.jpg;*.bmp;*.gif)|*.jpg*.jpeg;*.gif;*.bmp|AllFiles (*.*)|*.*";
      if (DialogResult.OK == dlg.ShowDialog())
      {
 ImgTobase64String(dlg.FileName);
      }
    }
    //图片 转为  base64编码的文本
    private void ImgTobase64String(string Imagefilename)
    {
      try
      {
 Bitmap bmp = new Bitmap(Imagefilename);
 this.pictureBox1.Image = bmp;
 FileStream fs = new FileStream(Imagefilename + ".txt", FileMode.Create);
 StreamWriter sw = new StreamWriter(fs);
 MemoryStream ms = new MemoryStream();
 bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
 byte[] arr = new byte[ms.Length];
 ms.Position = 0;
 ms.Read(arr, 0, (int)ms.Length);
 ms.Close();
 String strbaser64 = Convert.Tobase64String(arr);
 sw.Write(strbaser64);
 sw.Close();
 fs.Close();
 MessageBox.Show("转换成功!");
      }
      catch (Exception ex)
      {
 MessageBox.Show("ImgTobase64String 转换失败/nException:" + ex.Message);
      }
    }
    //base64编码的文本 转为  图片
    private void button2_Click(object sender, EventArgs e)
    {
      OpenFileDialog dlg = new OpenFileDialog();
      dlg.Title = "选择要转换的base64编码的文本";
      dlg.Filter = "txt files|*.txt";
      if (DialogResult.OK == dlg.ShowDialog())
      {
 base64StringToImage(dlg.FileName);
      }
    }
    //base64编码的文本 转为  图片
    private void base64StringToImage(string txtFileName)
    {
      try
      {
 FileStream ifs = new FileStream(txtFileName, FileMode.Open, FileAccess.Read);
 StreamReader sr = new StreamReader(ifs);
 String inputStr = sr.ReadToEnd();
 byte[] arr = Convert.Frombase64String(inputStr);
 MemoryStream ms = new MemoryStream(arr);
 Bitmap bmp = new Bitmap(ms);
 bmp.Save(txtFileName + ".jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
 //bmp.Save(txtFileName + ".bmp", ImageFormat.Bmp);
 //bmp.Save(txtFileName + ".gif", ImageFormat.Gif);
 //bmp.Save(txtFileName + ".png", ImageFormat.Png);
 ms.Close();
 sr.Close();
 ifs.Close();
 this.pictureBox1.Image = bmp;
 MessageBox.Show("转换成功!");
      }
      catch (Exception ex)
      {
 MessageBox.Show("base64StringToImage 转换失败/nException:"+ex.Message);
      }
    }
  }
}

PS:这里再为大家提供几款比较实用的base64在线编码解码工具供大家使用:

base64编码解码工具:
http://tools.jb51.net/transcoding/base64

在线图片转换base64工具:
http://tools.jb51.net/transcoding/img2base64

base64在线编码解码 UTF-8版:
http://tools.jb51.net/tools/base64_decode-utf8.php

base64在线编码解码 gb2312版:
http://tools.jb51.net/tools/base64_decode-gb2312.php

更多关于C#相关内容感兴趣的读者可查看本站专题:《C#编码操作技巧总结》、《C#中XML文件操作技巧汇总》、《C#常见控件用法教程》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#面向对象程序设计入门教程》及《C#程序设计之线程使用技巧总结》

希望本文所述对大家C#程序设计有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/123371.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号