C#實現(xiàn)字符串與圖片的Base64編碼轉(zhuǎn)換操作示例
本文實例講述了C#實現(xiàn)字符串與圖片的Base64編碼轉(zhuǎn)換操作。分享給大家供大家參考,具體如下:
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();
}
//圖片 轉(zhuǎn)為 base64編碼的文本
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.Title = "選擇要轉(zhuǎn)換的圖片";
dlg.Filter = "Image files (*.jpg;*.bmp;*.gif)|*.jpg*.jpeg;*.gif;*.bmp|AllFiles (*.*)|*.*";
if (DialogResult.OK == dlg.ShowDialog())
{
ImgToBase64String(dlg.FileName);
}
}
//圖片 轉(zhuǎn)為 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("轉(zhuǎn)換成功!");
}
catch (Exception ex)
{
MessageBox.Show("ImgToBase64String 轉(zhuǎn)換失敗/nException:" + ex.Message);
}
}
//base64編碼的文本 轉(zhuǎn)為 圖片
private void button2_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.Title = "選擇要轉(zhuǎn)換的base64編碼的文本";
dlg.Filter = "txt files|*.txt";
if (DialogResult.OK == dlg.ShowDialog())
{
Base64StringToImage(dlg.FileName);
}
}
//base64編碼的文本 轉(zhuǎn)為 圖片
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("轉(zhuǎn)換成功!");
}
catch (Exception ex)
{
MessageBox.Show("Base64StringToImage 轉(zhuǎn)換失敗/nException:"+ex.Message);
}
}
}
}
PS:這里再為大家提供幾款比較實用的base64在線編碼解碼工具供大家使用:
BASE64編碼解碼工具:
http://tools.jb51.net/transcoding/base64
在線圖片轉(zhuǎn)換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
更多關(guān)于C#相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《C#編碼操作技巧總結(jié)》、《C#中XML文件操作技巧匯總》、《C#常見控件用法教程》、《WinForm控件用法總結(jié)》、《C#數(shù)據(jù)結(jié)構(gòu)與算法教程》、《C#面向?qū)ο蟪绦蛟O(shè)計入門教程》及《C#程序設(shè)計之線程使用技巧總結(jié)》
希望本文所述對大家C#程序設(shè)計有所幫助。
- C# 圖片與Base64碼的相互轉(zhuǎn)化問題(代碼詳解)
- c#和java base64不一致的解決方法
- C#實現(xiàn)Base64處理的加密解密,編碼解碼示例
- C#編寫的Base64加密和解密類
- C#解碼base64編碼二進制數(shù)據(jù)的方法
- c# Base64編碼和圖片的互相轉(zhuǎn)換代碼
- asp.C#實現(xiàn)圖片文件與base64string編碼解碼
- c# 實現(xiàn)文件上傳下載功能的實例代碼
- C#實現(xiàn)的文件上傳下載工具類完整實例【上傳文件自動命名】
- C# 文件上傳下載(Excel導(dǎo)入,多線程下載)功能的實現(xiàn)代碼
- C#實現(xiàn)Web文件上傳的兩種方法實例代碼
- c# 用Base64實現(xiàn)文件上傳
相關(guān)文章
C#連接Oracle數(shù)據(jù)庫的多種方法總結(jié)
最近小項目當(dāng)中要使用C#來連接Oracle數(shù)據(jù)庫來完成系統(tǒng)的操作,這篇文章主要給大家介紹了關(guān)于C#連接Oracle數(shù)據(jù)庫的多種方法,文中通過實例代碼介紹的非常詳細(xì),需要的朋友可以參考下2023-04-04
C# 啟用事務(wù)提交多條帶參數(shù)的SQL語句實例代碼
這篇文章主要介紹了C# 啟用事務(wù)提交多條帶參數(shù)的SQL語句實例代碼,需要的朋友可以參考下2018-02-02

