使用 PHP 将图像保存在 Cordova 的 XAMPP 服务器中


Save images in XAMPP server from Cordova with PHP

我的要求是保存从科尔多瓦插件相机拍摄的图像并将图像保存在服务器中。我使用了下面的代码并实现了获取图像,但是如何使用PHP保存在服务器中

// Code to capture photo from camera and show gps co ordinates 
<!DOCTYPE html>
<html>
<head>
<title>Capture Photo</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
var pictureSource;   // picture source
var destinationType; // sets the format of returned value
// Wait for device API libraries to load
document.addEventListener("deviceready",onDeviceReady,false);
// device APIs are available
function onDeviceReady() {
pictureSource=navigator.camera.PictureSourceType;
destinationType=navigator.camera.DestinationType;
}
// Called when a photo is successfully retrieved
//
function onPhotoDataSuccess(imageData) {
// Uncomment to view the base64-encoded image data
// console.log(imageData);
// Get image handle
//
var smallImage = document.getElementById('smallImage');
// Unhide image elements
//
smallImage.style.display = 'block';
// Show the captured photo
// The in-line CSS rules are used to resize the image
//
 smallImage.src = "data:image/jpeg;base64," + imageData;
 }
 // Called when a photo is successfully retrieved
 //
function onPhotoURISuccess(imageURI) {
// Uncomment to view the image file URI
// console.log(imageURI);
 // Get image handle
 //
var largeImage = document.getElementById('largeImage');
// Unhide image elements
 //
 largeImage.style.display = 'block';
 // Show the captured photo
 // The in-line CSS rules are used to resize the image
 //
 largeImage.src = imageURI;
 }
// A button will call this function
//
function capturePhoto() {
// Take picture using device camera and retrieve image as base64-encoded   string
navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
destinationType: destinationType.DATA_URL });
}
// A button will call this function
//
function capturePhotoEdit() {
// Take picture using device camera, allow edit, and retrieve image as     base64-encoded string
navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 20,      allowEdit: true,
destinationType: destinationType.DATA_URL });
}
// A button will call this function
//
function getPhoto(source) {
// Retrieve image file location from specified source
navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50,
destinationType: destinationType.FILE_URI,
sourceType: source });
}
// Called if something bad happens.
//
function onFail(message) {
alert('Failed because: ' + message);
}
</script>
</head>
<body>
 // button to capture photo  
<button onclick="capturePhoto();">Capture Photo</button> <br>
// button to capture editable photo
<button onclick="capturePhotoEdit();">Capture Editable Photo</button> <br>
//button to select images from library
<button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo  Library</button><br>
<button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo  Album</button><br>
<img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
<img style="display:none;" id="largeImage" src="" />
</body>
</html>

PHP代码(上传.php):

<?php
print_r($_FILES);
move_uploaded_file($_FILES["file"]["tmp_name"],   "192.168.3.153/uploads/".$_FILES["file"]["name"]);
?> 

执行此操作的唯一方法是将图像作为 Base64 编码字符串获取,将其发送回服务器,然后将其以编码形式保存到数据库中,或者对其进行解码,然后将其另存为服务器上的文件或数据库中的 blob。

我不知道确切的实现过程,因为我不是 Cordova 开发人员,我只是坐在一个工作的人旁边,他最近因为类似的事情而扯头发。

在科尔多瓦中,我们有插件file transfer用于从服务器下载/上传文件。您必须使用此插件上传从相机拍摄的图像。

查看以下链接,详细说明如何将文件上传到服务器

下面是一个Javascript函数,它选择存储在移动设备中的文件并将其发送到服务器

function uploadfiletoserver(filename){ // where filename is the file store in device
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSys) {
    //The folder is created if doesn't exist
    fileSys.root.getDirectory( 'APP STORAGE FOLDER', {create:true, exclusive: false},
        function(directory) {
            //find the file
            directory.getFile(filename, {create: false, exclusive: false}, 
                function(file){
                    var imageURI = file.toInternalURL();
                    var options = new FileUploadOptions();
                    options.fileKey = "uploadfile";  //this is the value use to refer the file uploaded to server e.g. $_FILES['uploadfile']
                    options.fileName = file.name;
                    var ft = new FileTransfer();
                    ft.upload(imageURI, encodeURI('http://www.yourdomain.com/upload.php'), function (r) {
                        console.log("Code = " + r.responseCode);
                        console.log("Response = " + r.response);
                        console.log("Sent = " + r.bytesSent);
                    }, function (error) {
                        console.log("upload error source " + error.source);
                        console.log("upload error target " + error.target);
                    }, options);
                    console.log("upload file: "+imageURI);
                },
                function(error){
                    console.log("Error "+error);
                }
            );
        },
        resOnError);
    },
    resOnError);
}

在服务器 PHP 文件中,

<?php
    $tmpName = $_FILES['uploadfile']['tmp_name'];
    $fileName = $_FILES['uploadfile']['name'];
    $fileDestPath = 'YOUR_UPLOAD_FOLDER_IN_SERVER'.$fileName;
    if($tmpName != 'none') {
        move_uploaded_file($tmpName, $fileDestPath); 
    }
?>