mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-20 23:56:20 +08:00
CB-860: MediaFile.getFormatData broken for Image from Capture
This commit is contained in:
parent
24e5c24dd4
commit
adfdb16dc5
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user