Swingの長方形を単色で塗りつぶす方法を知っています。
Graphics2D g2d = bi.createGraphics();
g2d.setColor(Color.RED);
g2d.fillRect(0,0,100,100);
私はそれを画像で埋める方法を知っています:
BufferedImage bi;
Graphics2D g2d = bi.createGraphics();
g2d.setPaint (new Color(r, g, b));
g2d.fillRect (0, 0, bi.getWidth(), bi.getHeight());
しかし、サイズ950x950の長方形を、サイズ100x100のタイルパターンで塗りつぶす方法はありますか?
(パターン画像は100回使用する必要があります)