另外,如何将WIDth参数与img.Save(文件名“.png”,ImageFormat.Png)一起使用;?我知道我可以添加参数并识别“WIDth”,但我不知道它应该如何格式化,因此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); } } }}解决方法 我怀疑问题在于你如何在这里阅读文件:
fs.copyTo(ms);
您正在将文件的内容复制到MemoryStream中,但是将MemoryStream放在数据的末尾而不是开头.你可以通过添加:
// "Rewind" the memory stream after copying data into it,so it's ready to read.ms.position = 0;
你应该考虑如果你多次点击按钮会发生什么……我强烈建议你为你的fileStream使用using指令,因为你现在要打开它.
总结以上是内存溢出为你收集整理的c# – ArgumentException“参数不正确”全部内容,希望文章能够帮你解决c# – ArgumentException“参数不正确”所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)