Javascript 将div背景设置为使用相机拍摄的照片

Javascript 将div背景设置为使用相机拍摄的照片,javascript,android,html,css,cordova,Javascript,Android,Html,Css,Cordova,我正在使用Android中的PhoneGap构建一个移动应用程序,并试图将div的背景设置为使用相机拍摄的照片 我的相机工作正常(代码如下),但是在拍摄完照片后,我想立即将body div的背景图像设置为照片,而不是仅仅向用户显示他们的照片 var pictureSource; // picture source var destinationType; // sets the format of returned value // Wait for PhoneGap to connec

我正在使用Android中的PhoneGap构建一个移动应用程序,并试图将div的背景设置为使用相机拍摄的照片

我的相机工作正常(代码如下),但是在拍摄完照片后,我想立即将body div的背景图像设置为照片,而不是仅仅向用户显示他们的照片

var pictureSource;   // picture source
var destinationType; // sets the format of returned value 

// Wait for PhoneGap to connect with the device
//
document.addEventListener("deviceready",onDeviceReady,false);

// PhoneGap is ready to be used!
//
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 inline CSS rules are used to resize the image
  //
  smallImage.src = "data:image/jpeg;base64," + imageData;

  //set the background here?
  $('#wrapper').css("background-image", "url(imageData.jpg)"); 
}

// 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 inline 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 });
}

// 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 }); 
}

// 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);
}
为了在前面的代码中设置背景,我使用了以下方法:

$('#wrapper').css("background-image", "url(imageData.jpg)")

任何帮助都很好。

您需要的是URI,而不是base64数据


在函数onPhotoURISuccess的底部,并在调用capturePhoto()时将其用作成功处理程序。我只是使用了几乎完全相同的代码(来自phonegap的camera API文档的示例)

您想要的是URI,而不是base64数据


在函数onPhotoURISuccess的底部,并在调用capturePhoto()时将其用作成功处理程序。我刚刚使用了几乎完全相同的代码(phonegap的camera API文档中的示例)实现了这一点。

什么东西不适合你?是什么阻止了你做$('#wrapper').css(“背景图像”,大图像)?或者是关于用户没有取消相机的问题,接受屏幕>?那么你遇到了什么问题?出了什么问题?我在底部建议的那行代码不起作用,只是想告诉你我想要什么。到底什么对你不起作用?是什么阻止你做$(“#包装器”).css(“背景图像”,大图像)?或者是关于用户没有获得相机取消、接受屏幕>?那么您遇到了什么问题?出什么问题了?我在底部建议的那行代码不起作用,它只是给出了我想要什么的想法。
$('#wrapper').css("background-image", "url("+imageURI+")")