エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
画像を読み込まずに高さ/幅を取得する - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
画像を読み込まずに高さ/幅を取得する - Qiita
BitmapFactory.Options opts = new BitmapFactory.Options(); opts.inJustDecodeBounds = true;//これが... BitmapFactory.Options opts = new BitmapFactory.Options(); opts.inJustDecodeBounds = true;//これが読み込まないオプション Bitmap preBitmap = null; InputStream preIStream = new FileInputStream(path); preBitmap = BitmapFactory.decodeStream(preIStream, null, opts); preIStream.close(); int bmW = opts.outWidth ;//画像のwidth int bmH = opts.outHeight ;//画像のheight