エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Javaメモ: 画像をきれいに縮小拡大
2008年3月25日火曜日 画像をきれいに縮小拡大 Image changeSize(BufferedImage image, int width, int h... 2008年3月25日火曜日 画像をきれいに縮小拡大 Image changeSize(BufferedImage image, int width, int height) { ImageFilter filter = new AreaAveragingScaleFilter(width, height); ImageProducer ip = new FilteredImageSource(image.getSource(), filter); Image newImage = Toolkit.getDefaultToolkit().createImage(ip); return newImage; } ここに詳しくのってる この方法のほうが速くていいかも BufferedImage changSize(BufferedImage image, int width, int height