2

C#、WFA、.NET 4.5 プラットフォームを使用、

textBox1 (名)、textBox2 (姓)、pictureBox1 (従業員の写真)、button2 (参照)、および button1 (保存) をドロップして、新しい従業員を挿入しました。

button2 -> 画像をブラウズし、pictureBox1 に表示する必要があります。

button1 -> button2 によって参照され、pictureBox1 によって表示されている画像を、localhost のこのテーブルに保存する必要があります。

プログラムを実行した後、このエラーが発生しました (ファイルが見つかりませんでした。)

(ブラウジングだけではエラーにはなりませんが)

この WFA を修正するためのコードを含む回答が欲しいだけです。私がこれについて明確であることを確認したいだけです。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using System.IO;
using System.Data.SqlClient;


namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {

        SqlConnection cnn = new SqlConnection("Initial Catalog=randomcompany;Data Source=localhost;Integrated Security=SSPI;");

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e) //Browse button
        {
            try
            {
                OpenFileDialog dlg = new OpenFileDialog();
                dlg.Filter = "Images (*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|" + "All files (*.*)|*.*";
                dlg.Title = "Select Employee Picture";
                if (dlg.ShowDialog() == DialogResult.OK)
                {
                    pictureBox1.Image = System.Drawing.Image.FromFile(dlg.FileName);
                    pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

        private void button1_Click(object sender, EventArgs e) //Save button
        {

            try
            {
                cnn.Open();
                string path = pictureBox1.Image.ToString();
                Byte[] imagedata = File.ReadAllBytes(path);
                SqlCommand cmd = new SqlCommand("INSERT INTO Employees (EmployeeFirstname, EmployeeLastname, EmployeePhoto) VALUES (@item1,@item2,@img", cnn);
                cmd.Parameters.AddWithValue("@item1", textBox1.Text);
                cmd.Parameters.AddWithValue("@item2", textBox2.Text);
                cmd.Parameters.AddWithValue("@img", imagedata);
                cmd.ExecuteNonQuery();
                cnn.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

        }

    }
}
4

3 に答える 3

4

ここで画像から画像ファイルのパスを取得しようとすると:

string path = pictureBox1.Image.ToString();

実際に画像タイプの名前を取得します(System.Drawing.Bitmap)

ダイアログで選択した後、画像ファイルへのパスを保持する必要があります。次のように実行できます。

pictureBox1.Image = System.Drawing.Image.FromFile(dlg.FileName);
pictureBox1.Tag = dlg.FileName;

次に、この名前を次のように読む必要があります。

string path = pictureBox1.Tag as string;
于 2013-09-27T16:46:52.627 に答える
3

問題は、次のことです。

string path = pictureBox1.Image.ToString();

パスを返しません。取得したパスをクラス フィールドに格納します。名前を付けましょう_path:

private string _path;

ファイル名を取得したら、それを設定しましょう。

_path = dlg.FileName;

そして、ここでそれを使用してください:

Byte[] imagedata = File.ReadAllBytes(_path);

変更された完全なコードは次のとおりです。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using System.IO;
using System.Data.SqlClient;


namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        private string _path;

        SqlConnection cnn = new SqlConnection("Initial Catalog=randomcompany;Data Source=localhost;Integrated Security=SSPI;");

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e) //Browse button
        {
            try
            {
                OpenFileDialog dlg = new OpenFileDialog();
                dlg.Filter = "Images (*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|" + "All files (*.*)|*.*";
                dlg.Title = "Select Employee Picture";
                if (dlg.ShowDialog() == DialogResult.OK)
                {
                    pictureBox1.Image = System.Drawing.Image.FromFile(dlg.FileName);
                    _path = dlg.FileName;
                    pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

        private void button1_Click(object sender, EventArgs e) //Save button
        {

            try
            {
                cnn.Open();
                Byte[] imagedata = File.ReadAllBytes(_path);
                SqlCommand cmd = new SqlCommand("INSERT INTO Employees (EmployeeFirstname, EmployeeLastname, EmployeePhoto) VALUES (@item1,@item2,@img", cnn);
                cmd.Parameters.AddWithValue("@item1", textBox1.Text);
                cmd.Parameters.AddWithValue("@item2", textBox2.Text);
                cmd.Parameters.AddWithValue("@img", imagedata);
                cmd.ExecuteNonQuery();
                cnn.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

        }

    }
}
于 2013-09-27T16:46:26.077 に答える
1

画像パスを取得するために間違ったプロパティを使用しています。画像の正確な位置を取得するには、画像ボックスのPictureBox.ImageLocationプロパティを取得する必要があります 。

この部分を修正

private void button1_Click(object sender, EventArgs e) //Save button
    {

        try
        {
            cnn.Open();
            string path = pictureBox1.ImageLocation; // this will work
            string path = pictureBox1.Image.ToString(); // here error comes
            Byte[] imagedata = File.ReadAllBytes(path);
            SqlCommand cmd = new SqlCommand("INSERT INTO Employees (EmployeeFirstname, EmployeeLastname, EmployeePhoto) VALUES (@item1,@item2,@img", cnn);
            cmd.Parameters.AddWithValue("@item1", textBox1.Text);
            cmd.Parameters.AddWithValue("@item2", textBox2.Text);
            cmd.Parameters.AddWithValue("@img", imagedata);
            cmd.ExecuteNonQuery();
            cnn.Close();
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }

    }
于 2013-09-27T16:50:28.903 に答える