CB-860: MediaFile.getFormatData broken for Image from Capture

This commit is contained in:
macdonst 2012-06-05 08:42:17 -04:00
parent 24e5c24dd4
commit adfdb16dc5
2 changed files with 3 additions and 2 deletions

View File

@ -148,9 +148,10 @@ public class Capture extends Plugin {
* @throws JSONException
*/
private JSONObject getImageData(String filePath, JSONObject obj) throws JSONException {
Bitmap bitmap = BitmapFactory.decodeFile(filePath);
Bitmap bitmap = BitmapFactory.decodeFile(FileUtils.stripFileProtocol(filePath));
obj.put("height", bitmap.getHeight());
obj.put("width", bitmap.getWidth());
bitmap.recycle();
return obj;
}

View File

@ -740,7 +740,7 @@ public class FileUtils extends Plugin {
* @param filePath to be checked.
* @return
*/
private String stripFileProtocol(String filePath) {
public static String stripFileProtocol(String filePath) {
if (filePath.startsWith("file://")) {
filePath = filePath.substring(7);
}