現在Monacaでアプリを開発しております(Android使用)。
端末の写真を取り込むCordovaプラグイン「cordova-plugin-photos」を使って、アプリ内に画像を取り込もうとしています。
サムネイル画像取得は「Photos.thumbnail()」、オリジナル画像取得では「Photos.image()」を使います。
それぞれ事前に取得済みの写真IDを投げることで画像URLを取得することができ、実際サムネイル画像については取得できていますが、オリジナル画像を取得しようとすると「Photo ID is undefined」というエラーが表示され取得できません。
写真IDを確認しましたが正しく入っております。
サムネイルが取得できるのにオリジナルが取得できないのは、プラグイン側に何らか問題がある?とも思いますが原因が分かりません。
プラグイン側のコードも添付いたします。
改善策おわかりの方いらっしゃいましたらよろしくお願いいたします。
JavaScript
1 2// 写真のメタデータ 3var item = { 4 id: 0123, // 写真IDは個別に取得したものがここに入る 5 contentType: 'image/jpeg' 6}; 7 8// 端末内にオリジナル画像を作成 9requestFileSystem(LocalFileSystem.TEMPORARY, 3*1024*1024, function(fs) { 10 fs.root.getFile( 11 item.id.replace(/\W/g, "_") + item.contentType.replace(/^image//, "."), 12 {create: true, exclusive: false}, 13 function(entry) { 14 entry.file(function(file) { 15 if (file.size == 0) { 16 17 // Photos.image()でオリジナル画像のURLを取得 18 Photos.image(item.id, function(data) { // 写真IDはここで正しく指定するがエラー、サムネイル画像取得に使用する「Photos.thumbnail」なら同様の指定でエラーなく取得可能 19 entry.createWriter(function(writer) { 20 writer.onwriteend = function() { 21 22 var url = entry.toURL(); 23 alert('URL取得完了:' + url); 24 25 }; 26 writer.onerror = console.error; 27 writer.write(new Blob([data], {"type": item.contentType})); 28 }, console.error); 29 }, console.error); 30 31 }; 32 }, error()); 33 }, error()); 34}, error()); 35 36
↓「photos.java」ファイル一部抜粋
JAVA
1 2private void thumbnail(final String photoId, final JSONObject options, final CallbackContext callbackContext) { 3 int size = options != null ? options.optInt(P_SIZE, DEF_SIZE) : DEF_SIZE; 4 int quality = options != null ? options.optInt(P_QUALITY, DEF_QUALITY) : DEF_QUALITY; 5 boolean asDataUrl = options != null && options.optBoolean(P_AS_DATAURL); 6 int orientation = options != null ? options.optInt(P_ORI, DEF_ORI) : DEF_ORI; 7 try { 8 if (photoId == null || photoId.isEmpty() || "null".equalsIgnoreCase(photoId)) 9 throw new IllegalArgumentException(E_PHOTO_ID_UNDEF); 10 final Bitmap thumb = getThumbnail( 11 cordova.getActivity().getContentResolver(), Long.parseLong(photoId), MINI_KIND, null); 12 if (thumb == null) throw new IllegalStateException(E_PHOTO_ID_WRONG); 13 14 double ratio = (double) size / (thumb.getWidth() >= thumb.getHeight() ? thumb.getWidth() : thumb.getHeight()); 15 int thumbW = (int) Math.round(thumb.getWidth() * ratio); 16 int thumbH = (int) Math.round(thumb.getHeight() * ratio); 17 18 final ByteArrayOutputStream osThumb = new ByteArrayOutputStream(); 19 20 Matrix matrix = new Matrix(); 21 matrix.postRotate(orientation); 22 Bitmap scaledBitmap = Bitmap.createScaledBitmap(thumb, thumbW, thumbH, true); 23 Bitmap rotatedBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0, scaledBitmap.getWidth(), scaledBitmap.getHeight(), matrix, true); 24 25 rotatedBitmap.compress(Bitmap.CompressFormat.JPEG, quality, osThumb); 26 27 if (!asDataUrl) callbackContext.success(osThumb.toByteArray()); 28 else callbackContext.success(T_DATA_URL + Base64.encodeToString(osThumb.toByteArray(), Base64.NO_WRAP)); 29 } catch (Exception e) { 30 Log.e(TAG, e.getMessage(), e); 31 callbackContext.error(e.getMessage()); 32 } 33} 34 35private void image(final JSONObject photo, final CallbackContext callbackContext) { 36 String photoId = photo != null ? photo.optString(P_ID, null) : null; 37 int orientation = photo != null ? photo.optInt(P_ORI, DEF_ORI) : DEF_ORI; 38 int width = photo != null ? photo.optInt(D_WIDTH, DEF_WIDTH) : DEF_WIDTH; 39 int height = photo != null ? photo.optInt(D_HEIGHT, DEF_HEIGHT) : DEF_HEIGHT; 40 41 try { 42 if (photoId == null || photoId.isEmpty() || "null".equalsIgnoreCase(photoId)) 43 throw new IllegalArgumentException(E_PHOTO_ID_UNDEF); 44 final Bitmap image = getBitmap( 45 cordova.getActivity().getContentResolver(), 46 Uri.withAppendedPath(EXTERNAL_CONTENT_URI, photoId)); 47 if (image == null) throw new IllegalStateException(E_PHOTO_ID_WRONG); 48 final ByteArrayOutputStream osImage = new ByteArrayOutputStream(); 49 50 Matrix matrix = new Matrix(); 51 matrix.postRotate(orientation); 52 width = Math.min(width, image.getWidth()); 53 height = Math.min(height, image.getHeight()); 54 Bitmap rotatedBitmap = Bitmap.createBitmap(image, 0, 0, image.getWidth(), image.getHeight(), matrix, true); 55 rotatedBitmap.compress(Bitmap.CompressFormat.JPEG, DEF_QUALITY, osImage); 56 57 callbackContext.success(osImage.toByteArray()); 58 } catch (Exception e) { 59 Log.e(TAG, e.getMessage(), e); 60 callbackContext.error(e.getMessage()); 61 } 62}
追記
以下コード部分、第2引数に『{}』を加えるとエラーメッセージが出なくなりましたが、画像は取得できませんでした。
JavaScript
1Photos.image(item.id, function(data) { // これだとエラーが出る 2 ↓ 3Photos.image(item.id, {}, function(data) { // エラーは出なくなったが画像は取得できていない
あなたの回答
tips
プレビュー