首页 > 解决方案 > ArgumentException“参数不正确”

问题描述

我正在尝试编写一个将内存流转换为 png 图像的代码,但是在using(Image img = Image.FromStream(ms))时出现ArgumentException“参数不正确”错误。它没有进一步指定它,所以我不知道为什么我会收到错误以及我应该怎么做。

另外,如何将 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);
            }
        }
    }
}

标签: c#

解决方案


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

fs.CopyTo(ms);

您将文件的内容复制到 中MemoryStream,但随后将MemoryStream定位在数据的末尾而不是开头。您可以通过添加以下内容来解决此问题:

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

你应该考虑如果你多次点击按钮会发生什么......我强烈建议你为你的 使用一个using指令FileStream,因为目前你让它保持打开状态。


推荐阅读