使用 C# 中的 Windows 窗体上传照片并对其进行处理,然后显示结果照片

本文关键字:照片 处理 结果 显示 然后 Windows 中的 窗体 使用 | 更新日期: 2023-09-27 18:32:21

我不知道如何上传图像并对其进行处理,然后显示结果图像。如果有人可以帮助我?

这是我所做的:

  private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Title = "open image";
            ofd.Filter = "Text Files (.txt)|*.txt|All Files (*.*)|*.*";
            if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                MessageBox.Show("test");
            }
        }

使用 C# 中的 Windows 窗体上传照片并对其进行处理,然后显示结果照片

这是将图像文件上传到 ftp 服务器的示例代码。您可以使用类似此函数的内容。

public void upload_image_file() 
{ 
  using (WebClient client = new WebClient())  
  { client.Credentials = new NetworkCredential("username", "p/w"); 
    client.UploadFile("FTP_PATH/YOUR FILE NAME.extention", "STOR", "where the local file stored/YOUR FILE NAME.extention"); 
  } 
}