ArgumentException“参数不正确”

时间:2018-11-12 15:34:59

标签: c#

我正在尝试编写将内存流转换为png图像的代码,但是在 using(Image img = Image。)上出现了 ArgumentException“ parameter is errors” 错误。 FromStream(ms))。它没有进一步说明,所以我不知道为什么会收到错误以及该怎么办。

另外,如何将Width参数与 img.Save(filename +“ .png”,ImageFormat.Png); 一起使用?我知道我可以添加参数并且它可以识别“宽度”,但是我不知道应该如何设置其格式,以便Visual Studio接受它。

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.Drawing.Imaging;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        MemoryStream ms = new MemoryStream();
        public string filename;

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFile();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            ConvertFile();
        }

        private void OpenFile()
        {
            OpenFileDialog d = new OpenFileDialog();

            if(d.ShowDialog() == DialogResult.OK)
            {
                filename = d.FileName;
                var fs = d.OpenFile();
                fs.CopyTo(ms);
            }
        }

        private void ConvertFile()
        {
            using(Image img = Image.FromStream(ms))
            {
                img.Save(filename + ".png", ImageFormat.Png);
            }
        }
    }
}

1 个答案:

答案 0 :(得分:6)

我怀疑问题在于您如何在此处读取文件:

fs.CopyTo(ms);

您要将文件的内容复制到MemoryStream中,但是将MemoryStream保留在数据的 end 而不是开始位置。您可以通过添加以下内容来解决该问题:

// "Rewind" the memory stream after copying data into it, so it's ready to read.
ms.Position = 0;

您应该考虑一下如果多次单击按钮会发生什么情况……我强烈建议您为您的using使用FileStream指令,因为当前您要离开它打开。