1

我目前正在尝试制作一个简单的照片上传功能,该功能将上传我拍摄的截图。我找到了这个网站 dumpyourphoto.com 但我真的不明白如何在 C# 中做到这一点。谁能指导我完成这个?

基本上我所需要的只是将截图照片上传到服务器,希望它会返回我该照片的 url。从那里开始,我将把这个 URL 上传到我已经设置的 OpenShift 数据库,并将它作为文本上传,并将链接存储在数据库中。

正确的。感谢西蒙的问题。我意识到我没有提供太多细节。

所以基本上我使用 kinect 截取了屏幕截图,这就是我正在使用的功能。

private void btn_ss_Click(object sender, RoutedEventArgs e)
    {
        // create a png bitmap encoder which knows how to save a .png file
        BitmapEncoder encoder = new PngBitmapEncoder();

        // create frame from the writable bitmap and add to encoder
        encoder.Frames.Add(BitmapFrame.Create(this.colorBitmap));

        string time = System.DateTime.Now.ToString("hh'-'mm'-'ss", CultureInfo.CurrentUICulture.DateTimeFormat);

        string myPhotos = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);

        string path = System.IO.Path.Combine(myPhotos, "KinectSnapshot-" + time + ".png");

        // write the new file to disk
        try
        {
            using (FileStream fs = new FileStream(path, FileMode.Create))
            {
                encoder.Save(fs);
            }

            this.ss_dis.Text = string.Format("{0} {1}", "Screenshot has been taken.", path);
        }
        catch (IOException)
        {
            this.ss_dis.Text = string.Format("{0} {1}", "Failed to take Screenshot.", path);
        }
    }

我苦苦挣扎的部分是我以前从未真正处理过诸如 HttpWebRequest 函数之类的 Web 活动,并且该网站显示 xml 和 json。我对如何做到这一点有一点想法,但我不太确定。这是开发人员 api 的链接。 http://www.dumpyourphoto.com/information/api

更新:我试图自己解决问题,但我被困在最后一部分。我不知道如何将字节数组和密钥附加到 HttpWebRequest。

 private byte[] imgToByteArray(string _FileName)
    {
        byte[] _buffer = null;

        try
        {

            System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
            System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);

            long _TotalByte = new System.IO.FileInfo(_FileName).Length;
            _buffer = _BinaryReader.ReadBytes((Int32)_TotalByte);

            _FileStream.Close();
            _FileStream.Dispose();
            _BinaryReader.Close();
         }
        catch(Exception _Exception)
        {
            Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
        }

        return _buffer;
    }

这是 Image to ByteArray 函数。

private void button1_Click(object sender, RoutedEventArgs e)
    {
        string imgPath = "C:\\KinectSnapshot-04-46-14.png";
        string key = "1d533e9033f9d5b9b509055d8a00932aaf1ace7f";

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.dumpyourphoto.com/api/upload_photo/xml");
        string path = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "KinectSnapshot-" + "03-38-28" + ".png");

        byte[] img = imgToByteArray(path);
        request.Method = "POST";
        request.Credentials = CredentialCache.DefaultCredentials;
        request.ContentType = "application/x-www-form-urlencoded";
        request.ContentLength = img.Length;
        using(Stream dataStream = request.GetRequestStream())
            dataStream.Write(img, 0, img.Length);

        using (WebResponse response = request.GetResponse()) 
        using(Stream responseStream = response.GetResponseStream())
        using (StreamReader reader = new StreamReader(responseStream))
        {
            string responseResults = reader.ReadToEnd();
            Console.WriteLine(responseResults);
        }
 }

更新:这是我目前所在的位置。我还有 2 个问题。我不知道在哪里附上密钥文件和上传图片的标题。任何人都可以启发我吗?

我真的很感激我能得到的任何帮助!

4

1 回答 1

0

您将使用 HttpWebRequest 使用其 API 中列出的方法发出 POST 请求。你有什么具体的问题吗?

于 2012-07-26T04:18:14.533 回答