小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

詳解C#數(shù)據(jù)庫存取圖片三大方式 -IT168 技術(shù)開發(fā)專區(qū)

 ylw527 2010-11-26

詳解C#數(shù)據(jù)庫存取圖片三大方式

2010年09月25日12:45 來源:蘇飛的博客  作者:蘇飛  編輯:胡銘婭 評論:0
本文Tag: c# 數(shù)據(jù)庫

    【IT168 評論】第一種方式 文件夾與數(shù)據(jù)庫配合

  近來做了不少關(guān)于這塊的功能 ,隨著網(wǎng)絡(luò)的飛速發(fā)展,網(wǎng)絡(luò)存取圖片已不再是神話,而成為了一種時尚,如果是你 是用Asp.net開發(fā)的話,可能更多的人會考慮使用數(shù)據(jù)庫存儲圖片的路經(jīng),而在文件夾是存儲圖片的方式。這種方式主要的方法有兩個一個就是怎么樣讀取圖片,怎么樣存儲圖上,讀取的話我就不多說的這個是最簡單的了,只要大家把地址=給存儲圖片的對象就行了,在取的時候一般要使用相對地址也就是“~” 如下所示

ImageUrl="../CardDeal/SellCardZhi.jpg'
ImageUrl="~/CardDeal/SellCardZhi.jpg'

 

  當(dāng)然這前面要加上你自己的圖片所在服務(wù)器的文件夾的名稱

  我們來看是一下是怎么存儲的吧,我常用的一個方法是這樣的

/// <summary>
    
/// 上傳圖片
    
/// </summary>
    
/// <param name="FUSShopURL">FileUpload對象</param>
    
/// <param name="UpladURL">圖片要放到的目錄名稱</param>
    
/// <returns>如果FileUpload不為空則返回上傳后的圖片位置,否則返回為空字符</returns>
    
public  static  string  uploadImage(FileUpload FUSShopURL, string UpladURL)
    {
        
if (FUSShopURL.HasFile)
        {
            
//獲取當(dāng)前的時間,一當(dāng)作圖片的名字
            
string fileName = DateTime.Now.ToString("yyyyMMddhhmmss") + DateTime.Now.Millisecond.ToString();
            
//獲取圖片的擴展名
            
string Extent = System.IO.Path.GetExtension(FUSShopURL.PostedFile.FileName);
            
//重命名圖片
            fileName
+= Extent;
            
//設(shè)置上傳圖片保存的文件夾
            
string dir = System.Web.HttpContext.Current.Server.MapPath(UpladURL);
            
//指定圖片的路徑及文件名
            
string path = dir + "\\" + fileName;
            
//把上傳得圖片保存到指定的文件加中
            FUSShopURL.PostedFile.SaveAs(path);
            return  fileName;
        }
        
else
        {
            return
"";
        }
    }

 

  這個方法是與FileUpload控件 一起使用的,方法很簡單大家一看就明白了。

  方法返回的就是一個相對的路經(jīng)可以直接存儲的數(shù)據(jù)里,然后從前臺調(diào)用就可以了

  第二種方式 直接把圖片的Base64String碼進行存取

  這種方法很方便,直接轉(zhuǎn)化一下就行了,不需要書寫很麻煩的路經(jīng)問題

  先看一下是怎么存儲到數(shù)據(jù)庫的吧

//選擇圖片
        
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();
                    
//直接返這個值放到數(shù)據(jù)就行了
                    pic
= Convert.ToBase64String(arr);
                }
                catch { }
            }
        }

 

  讀取的方法也很簡單, pic就是我們得到的圖片字符串只要我們存儲到數(shù)據(jù)庫里,從下面的方法里讀取就可以了

  需要注意的地方我都加的有注釋

//加載圖片
        
private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
              
// pic=........這一句換成從數(shù)據(jù)庫里讀取就可以了
                
//判斷是否為空,為空時的不執(zhí)行
                
if (!string.IsNullOrEmpty(pic))
                {
                    
//直接返Base64碼轉(zhuǎn)成數(shù)組
                    
byte[] imageBytes = Convert.FromBase64String(pic);
                    
//讀入MemoryStream對象
                    MemoryStream memoryStream
= new MemoryStream(imageBytes, 0, imageBytes.Length);
                    memoryStream.Write(imageBytes,
0, imageBytes.Length);
                    
//轉(zhuǎn)成圖片
                    Image image
= Image.FromStream(memoryStream);

                    
//memoryStream.Close();//不要加上這一句否則就不對了

                    
// 將圖片放置在 PictureBox 中
                    this.pictureBox1.SizeMode
= PictureBoxSizeMode.Zoom;
                    this.pictureBox1.Image
= image;
                }
            }
            catch { }
        }
大家看一下效果吧

直接把圖片的Base64String碼進行存取
 

  在這里我們只要單擊選擇圖片直接就可以更換。這些很簡單但是我個人感覺還是很常用的,而且網(wǎng)上關(guān)于這塊的例子著實不少,不過真正能幫上忙的還真不多,因為我們的好幾個項目里用到了這些方法,或多或少的還是有些員工不怎么會, 在這里貼一貼方便新手查看吧。呵呵

  下面的本例子的所有代碼

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;
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 { }
            }
        }
    }
}

第三種方式 讀成二進制后進行存取

  先把圖片讀成二進制以后再做處理,這樣快捷而且代碼相對少很多,還有就是感謝下面幾位網(wǎng)友的提醒和建議,在這里我把我簡單寫的代碼貼一下,怎么樣存儲到數(shù)據(jù)庫的方法還是大家自己寫我只提供存取的方法

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
                {
                    
//讀成二進制
                    
byte[] bytes = File.ReadAllBytes(openfile.FileName);
                    
//直接返這個存儲到數(shù)據(jù)就行了cmd.Parameters.Add("@image", SqlDbType.Image).Value = bytes;

                    
//輸出二進制  在這里把數(shù)據(jù)中取到的值放在這里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 { }
            }
        }

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多