c#數據庫存取圖片的三種方式
第一種方式 文件夾與數據庫配合
近來做了不少關于這塊的功能 ,隨著網絡的飛速發展,網絡存取圖片已不再是神話,而成為了一種時尚,如果是你 是用Asp.net開發的話,可能更多的人會考慮使用數據庫存儲圖片的路經,而在文件夾是存儲圖片的方式。這種方式主要的方法有兩個一個就是怎么樣讀取圖片,怎么樣存儲圖上,讀取的話我就不多說的這個是最簡單的了,只要大家把地址=給存儲圖片的對象就行了,在取的時候一般要使用相對地址也就是“~” 如下所:
ImageUrl="~/CardDeal/SellCardZhi.jpg'
當然這前面要加上你自己的圖片所在服務器的文件夾的名稱,我們來看是一下是怎么存儲的吧,我常用的一個方法是這樣的:
/// 上傳圖片
/// </summary>
/// <param name="FUSShopURL"& gt;FileUpload對象</param>
/// <param name="UpladURL">圖片要放到的目錄名稱</param>
/// <returns>如果FileUpload不為空則返回上傳后的圖片位置,否則返回為空字符</returns>
public static string uploadImage(FileUpload FUSShopURL, string UpladURL)
{
if (FUSShopURL.HasFile)
{
// 獲取當前的時間,一當作圖片的名字
string fileName = DateTime.Now.ToString("yyyyMMddhhmmss") + DateTime.Now.Millisecond.ToString();
// 獲取圖片的擴展名
string Extent = System.IO.Path.GetExtension(FUSShopURL.PostedFile.FileName);
// 重命名圖片
fileName += Extent;
//設置上傳圖片保存的文件夾
string dir = System.Web.HttpContext.Current.Server.MapPath(UpladURL);
// 指定圖片的路徑及文件名
string path = dir + "\\" + fileName;
// 把上傳得圖片保存到指定的文件加中
FUSShopURL.PostedFile.SaveAs(path);
return fileName;
}
else
{
return "";
}
}
這個方法是與FileUpload控件 一起使用的,方法很簡單大家一看就明白了。方法返回的就是一個相對的路經可以直接存儲的數據里,然后從前臺調用就可以了。
第二種方式 直接把圖片的Base64String碼進行存取
這種方法很方便,直接轉化一下就行了,不需要書寫很麻煩的路經問題,先看一下是怎么存儲到數據庫的吧:
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog openfile = new OpenFileDialog();
openfile.Title = " 請選擇客戶端longin的圖片";
openfile.Filter = "Login圖片 (*.jpg;*.bmp;*png)|*.jpeg;*.jpg;*.bmp;*.png|AllFiles(*.*)|*.*";
if (DialogResult.OK == openfile.ShowDialog())
{
try
{
Bitmap bmp = new Bitmap(openfile.FileName);
pictureBox1.Image = bmp;
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
byte[] arr = new byte[ms.Length];
ms.Position = 0;
ms.Read(arr, 0, (int)ms.Length);
ms.Close();
// 直接返這個值放到數據就行了
pic = Convert.ToBase64String(arr);
}
catch { }
}
}
讀取的方法也很簡單, pic就是我們得到的圖片字符串只要我們存儲到數據庫里,從下面的方法里讀取就可以了。需要注意的地方我都加的有注釋:
private void Form1_Load(object sender, EventArgs e)
{
try
{
// pic=........這一句換成從數據庫里讀取就可以了
// 判斷是否為空,為空時的不執行
if (!string.IsNullOrEmpty(pic))
{
// 直接返Base64碼轉成數組
byte[] imageBytes = Convert.FromBase64String(pic);
// 讀入MemoryStream對象
MemoryStream memoryStream = new MemoryStream(imageBytes, 0, imageBytes.Length);
memoryStream.Write(imageBytes, 0, imageBytes.Length);
// 轉成圖片
Image image = Image.FromStream(memoryStream);
//memoryStream.Close(); //不要加上這一句否則就不對了
// 將圖片放置在 PictureBox 中
this.pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
this.pictureBox1.Image = image;
}
}
catch { }
}
大家看一下效果吧:
在這里我們只要單擊選擇圖片直接就可以更換。這些很簡單但是我個人感覺還是很常用的,而且網上關于這塊的例子著實不少,不過真正能幫上忙的還真不多,因為我們的好幾個項目里用到了這些方法,或多或少的還是有些員工不怎么會, 在這里貼一貼方便新手查看吧。
下面的本例子的所有代碼:
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Threading;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string pic = "";
// 加載圖片
private void Form1_Load(object sender, EventArgs e)
{
try
{
if (!string.IsNullOrEmpty(pic))
{
byte[] imageBytes = Convert.FromBase64String(pic);
MemoryStream memoryStream = new MemoryStream(imageBytes, 0, imageBytes.Length);
memoryStream.Write(imageBytes, 0, imageBytes.Length);
Image image = Image.FromStream(memoryStream);
// 將圖片放置在 PictureBox 中
this.pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
this.pictureBox1.Image = image;
}
}
catch { }
}
// 選擇圖片
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog openfile = new OpenFileDialog();
openfile.Title = " 請選擇客戶端longin的圖片";
openfile.Filter = "Login圖片 (*.jpg;*.bmp;*png)|*.jpeg;*.jpg;*.bmp;*.png|AllFiles(*.*)|*.*";
if (DialogResult.OK == openfile.ShowDialog())
{
try
{
Bitmap bmp = new Bitmap(openfile.FileName);
pictureBox1.Image = bmp;
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
byte[] arr = new byte[ms.Length];
ms.Position = 0;
ms.Read(arr, 0, (int)ms.Length);
ms.Close();
pic = Convert.ToBase64String(arr);
}
catch { }
}
}
}
}
第三種方式 讀成二進制后進行存取
先把圖片讀成二進制以后再做處理,這樣快捷而且代碼相對少很多,還有就是感謝下面幾位網友的提醒和建議,在這里我把我簡單寫的代碼貼一下,怎么樣存儲到數據庫的方法還是大家自己寫我只提供存取的方法:
{
OpenFileDialog openfile = new OpenFileDialog();
openfile.Title = " 請選擇客戶端longin的圖片";
openfile.Filter = "Login圖片 (*.jpg;*.bmp;*png)|*.jpeg;*.jpg;*.bmp;*.png|AllFiles(*.*)|*.*";
if (DialogResult.OK == openfile.ShowDialog())
{
try
{
// 讀成二進制
byte[] bytes = File.ReadAllBytes(openfile.FileName);
// 直接返這個存儲到數據就行了 cmd.Parameters.Add("@image", SqlDbType.Image).Value = bytes;
// 輸出二進制 在這里把數據中取到的值放在這里byte[] bytes=(byte[])model.image;
pictureBox1.Image = System.Drawing.Image.FromStream(new MemoryStream(bytes));
this.pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
// 如果保存成文件:
File.WriteAllBytes(@"d:\text.jpg", bytes);
}
catch { }
}
}
留言列表