在Windows Phone 7应用程序中上传图像文件到PHP

本文关键字:图像 文件 PHP Windows Phone 应用程序 | 更新日期: 2023-09-27 18:04:48

我正在尝试从图片库(WP7)上传一张图片,并将其保存在服务器上的一个文件夹中。

在服务器上,我使用PHP使用POST方法接收文件。PHP代码是:

<?php
$uploads_dir = 'files/'; //Directory to save the file that comes from client application.
if ($_FILES["file"]["error"] == UPLOAD_ERR_OK) {
    $tmp_name = $_FILES["file"]["tmp_name"];
    $name = $_FILES["file"]["name"];
    move_uploaded_file($tmp_name, "$uploads_dir/$name");
}
?>

我已经尝试了一些方法,但他们似乎都失败了。我已经在使用客户端的Windows窗体应用程序中完成了这项工作。方法,但似乎不能在Windows Phone应用程序上使用。

我认为httpwebrequest可以帮助,对吧?

这是目前为止我的c#代码:
public partial class SamplePage : PhoneApplicationPage
    {
        public SamplePage()
        {
            InitializeComponent();
        }
        PhotoChooserTask selectphoto = null;
        private void SampleBtn_Click(object sender, RoutedEventArgs e)
        {
            selectphoto = new PhotoChooserTask();
            selectphoto.Completed += new EventHandler<PhotoResult>(selectphoto_Completed);
            selectphoto.Show();
        }
        void selectphoto_Completed(object sender, PhotoResult e)
        {
            if (e.TaskResult == TaskResult.OK)
            {
                BinaryReader reader = new BinaryReader(e.ChosenPhoto);
                image1.Source = new BitmapImage(new Uri(e.OriginalFileName));
                txtBX.Text = e.OriginalFileName;
            }
        }
    }

我在某个地方读到图像需要转换为一串字节,我不确定。但是,请帮帮我。

在Windows Phone 7应用程序中上传图像文件到PHP

我会将图像转换为base64(参见System.Convert),然后通过POST传输:

            HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://mydomain.cc/saveimage.php");
            request.Method = "POST";
            request.ContentType = "application/x-www-form-urlencoded";
            string postData = String.Format("image={0}", myBase64EncodedImage);   
            // Getting the request stream.
            request.BeginGetRequestStream
                (result =>
                {
                    // Sending the request.
                    using (var requestStream = request.EndGetRequestStream(result))
                    {
                        using (StreamWriter writer = new StreamWriter(requestStream))
                        {
                            writer.Write(postData);
                            writer.Flush();
                        }
                    }
                    // Getting the response.
                    request.BeginGetResponse(responseResult =>
                    {
                        var webResponse = request.EndGetResponse(responseResult);
                        using (var responseStream = webResponse.GetResponseStream())
                        {
                            using (var streamReader = new StreamReader(responseStream))
                            {
                                string srresult = streamReader.ReadToEnd();
                            }
                        }
                    }, null);
                }, null);
        }

saveimage.php应该像这样:

<?
function base64_to_image( $imageData, $outputfile ) {
    /* encode & write data (binary) */
    $ifp = fopen( $outputfile, "wb" );
    fwrite( $ifp, base64_decode( $imageData ) );
    fclose( $ifp );
    /* return output filename */
    return( $outputfile );
}       
if (isset($_POST['image'])) {
    base64_to_jpeg($_POST['image'], "my_path_to_store_images.jpg");
}
else
    die("no image data found");
?>

注意:我没有测试代码。可能有错别字或其他错误。这只是为了说明如何使用POST来传输图像。

编辑作为对您评论的回复:我没有编码到base64的代码,但这里是如何在c#中解码base64编码的图像:

byte[] image = Convert.FromBase64String(str);