Swing/MediaTracker のバックアップ(No.4)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/MediaTracker へ行く。
- 1 (2004-12-13 (月) 02:15:06)
- 2 (2004-12-13 (月) 02:15:48)
- 3 (2005-04-28 (木) 04:33:08)
- 4 (2005-09-10 (土) 22:34:16)
- 5 (2006-02-27 (月) 16:11:46)
- 6 (2006-05-31 (水) 10:53:34)
- 7 (2007-08-05 (日) 21:38:26)
- 8 (2007-11-12 (月) 12:26:23)
- 9 (2009-01-09 (金) 16:58:27)
- 10 (2013-04-14 (日) 00:40:53)
- 11 (2014-12-04 (木) 02:23:11)
- 12 (2016-02-25 (木) 15:45:58)
- 13 (2017-07-12 (水) 12:59:28)
- 14 (2018-07-13 (金) 16:44:05)
- 15 (2019-04-03 (水) 19:37:40)
- 16 (2021-01-20 (水) 18:23:55)
- 17 (2023-10-12 (木) 10:54:52)
MediaTrackerで画像のサイズを取得
編集者:Terai Atsuhiro
作成日:2004-12-13
更新日:2023-10-12 (木) 10:54:52
概要
MediaTrackerで画像のサイズを取得します。
サンプルコード
private Dimension getImageDimension(Image img) { MediaTracker tracker = new MediaTracker((Container)this); tracker.addImage(img, 0); try{ tracker.waitForID(0); }catch(InterruptedException e) {} return new Dimension(img.getWidth(null), img.getHeight(null)); }
解説
上記のサンプルではあらかじめjar内に入れておいたpng画像のサイズをラベルに表示しています。ソースコードを変更して、他の画像でも試してみてください。