如何使用 phonegap 应用程序获取所选图像的 URL
Posted
技术标签:
【中文标题】如何使用 phonegap 应用程序获取所选图像的 URL【英文标题】:How to get the URL of a selected image using phonegap application 【发布时间】:2013-07-25 13:41:32 【问题描述】:我正在使用 camera.getPicture() 方法打开照片库并让用户选择一张图片。这是我的参考
http://docs.phonegap.com/en/2.9.0/cordova_camera_camera.md.html#Camera
我们可以将图像作为 base64 字符串获取,也可以从函数 onPhotoURISuccess(imageURI)
中获取其 URI 并在我们的应用程序中使用。
我选择 URI 是因为它易于处理。我被卡住了,因为图像总是以 jpeg 格式返回,甚至图像的文件大小也无法测量。我通过调试跟踪了URI,它总是类似于下面的
file://localhost/Users/user/Library/Application%20Support/iPhone%20Simulator/6.0/Applications/B50E3AD6-74F8-43F6-9F91-F28D2B06DF62/tmp/cdv_photo_116.jpg
它正在尝试将图像保存在本地,并获取任何带有 jpg 扩展名的图像。 我想知道如何解决这个问题。有没有人知道我们如何通过这种方法获取图像的 URL?
【问题讨论】:
【参考方案1】:由于我没有得到答案,我继续挖掘 phoneGap 文档并最终得到了答案。以下是我的代码示例。注意文件扩展名识别方法取自here
我的 html(在 phoneGap 应用程序中)页面中有一个按钮控件,如下所示 任何人都可以参考here 的phoneGap 文档。太有用了。我用的是2.9.0版
<button onclick="getPhoto(Camera.pictureSource.PHOTOLIBRARY);">From Photo Library</button>
在我的 javascript 中,我有如下函数 getPhoto()
function getPhoto(source)
// Retrieve image file location from specified source
navigator.camera.getPicture(onPhotoURISuccess, onFail, quality: 100,
destinationType: navigator.camera.DestinationType.NATIVE_URI, sourceType: source );
一旦选择了一张照片,就会调用这个代表
function onPhotoURISuccess(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;
checkFileExtention(imageURI);
checkFileExtention() 函数异步调用原生端的文件扩展名检查方法。为简单起见,我只贴应用逻辑部分
//functions checks the type of the image passed
- (NSString *)contentTypeForImageData:(NSString *)imageUrl
NSURL *imageURL = [NSURL URLWithString:imageUrl];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
uint8_t c;
[imageData getBytes:&c length:1];
switch (c)
case 0xFF:
return @"image/jpeg";
case 0x89:
return @"image/png";
case 0x47:
return @"image/gif";
case 0x49:
case 0x4D:
return @"image/tiff";
case 0x42:
return @"@image/bmp";
return nil;
当获取 FILE_URI 时,它会在本地保存图像并发送如下所示的 URI file://localhost/Users/user/Library/Application%20Support/iPhone%20Simulator/6.0/Applications/B50E3AD6-74F8-43F6-9F91-F28D2B06DF62/tmp/cdv_photo_116.jpg
显然,文件类型是隐藏的,因为它总是显示为 jpg
当使用 NATIVE_URI 时,它看起来像这样 assets-library://asset/asset.JPG?id=5CF16D20-9A80-483A-AC1C-9692123610B1&ext=JPG 注意上面的uri显示的是JPG,因为图片是JPG,否则显示的是所选图片的真实文件扩展名。
最终,如果将本机 uri 发送到 contentTypeForImageData 函数,它会给我正确的输出
【讨论】:
你是救命恩人!以上是关于如何使用 phonegap 应用程序获取所选图像的 URL的主要内容,如果未能解决你的问题,请参考以下文章
如何将 UIImage 传递给 phonegap 以在 Image 控件中查看?
如何使用手机的本机应用程序打开图像 - Cordova / phonegap