C#将图像转换为BLOB并将结果存储在文本框中

时间:2016-03-30 13:38:57

标签: c# image visual-studio blob

我正在研究(应该是什么)一个非常简单的项目。它需要

(1)。允许用户选择图像文件,然后将其转换为可以作为BLOB存储在数据库中的格式。

(2)。将BLOB数据输出到文本框中。

(3)。框中输出的文本需要能够存储到数据库中,然后成功转换回图像(此转换在其他地方处理_。

这里的应用程序只是进行初始转换(图像到BLOB),以便用户可以将图像插入到SQL数据库中。但是,每当我运行程序时,只要我尝试打开文件,它就会“冻结”。我究竟做错了什么?是否有更有效的方法来完成我想要做的事情?

非常感谢!

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Controls;
using System.Windows.Forms;
using System.IO;

namespace Binary_Converter
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        private OpenFileDialog imageDialog = new OpenFileDialog();
        private FileStream imageStream;
        public MainWindow()
        {


            InitializeComponent();
              imageDialog.InitialDirectory = "c://";
            imageDialog.Filter = "Image Files | *.jpg; *.gif; *.png";

            imageDialog.FileOk += imageDialog_FileOk;

        }



        private void UI_Loaded(object sender, RoutedEventArgs e)
        {}




void imageDialog_FileOk(object sender, System.ComponentModel.CancelEventArgs e)
{
    if((imageStream = (FileStream)imageDialog.OpenFile()) != null) {
        byte[] buffer;
    using(imageStream) {
     buffer = new byte[imageStream.Length];


        imageStream.Read(buffer, 0, (int)imageStream.Length);    



    }
        foreach(byte i in buffer) {
            outputText.Text += buffer[i];
        }
    }

}

        private void addFileButton_Click(object sender, RoutedEventArgs e)
        {
            imageDialog.ShowDialog();

        }
        }

    }

2 个答案:

答案 0 :(得分:0)

认为您的程序因为尚未将值转换为十六进制格式而冻结。您正在尝试输出原始字节值,它会“损坏”您的文本框,因为它会将其解释为带有控制字符的字符串。如果要将值插入数据库,则需要使用十六进制格式。

 foreach(byte i in buffer) {
     outputText.Text += buffer[i];
 }

 outputText.Text = "0x"; // begin the string with 0x to tell that it is hexadecimal
 foreach(byte i in buffer) {
     outputText.Text += buffer[i].ToString("x2"); // convert each byte to hexadecimal form
 }

答案 1 :(得分:0)

您无需将其传递到文本框,然后将其保存到数据库中。 如果您有ImageBlob列,则直接保存byte[]

这篇文章(http://www.codeproject.com/Articles/33310/C-Save-and-Load-Image-from-Database)提供了更多相关信息。