我正在使用 Rhomobile API 使用相机拍摄照片。图像存储在 rhomobile 的 blob 文件夹中,路径存储在 rhom 中。
下面是我正在使用的代码,
def capture_image
options = { :enable_editing => false }
Camera::take_picture(url_for(:action => :callback_for_capture), options)
end
def callback_for_capture
photo_uri = @params['image_uri']
photo = Photo.create({
:id => generate_unique_id(),
:photo_uri => photo_uri
})
end
我需要将图像文件复制到应用程序的基本文件夹中。谁能建议我在哪里以及如何实现这一目标。
提前致谢