GAMMD rev.3

気ままにメモ

Java

JavaでGifアニメーション

public static BufferedImage buffer; int width = 100; int height = 12; int MAX_PAGE = 12; private void execute() { Iterator it = ImageIO.getImageWritersByFormatName("gif"); ImageWriter iw = it.hasNext() ? (ImageWriter) it.next() : null; Fil…

JavaでPNG画像作成

private int x = 100; private int y = 12;private void execute(String string) throws IOException { BufferedImage im = new BufferedImage(x, y, BufferedImage.TYPE_INT_ARGB); Graphics g = im.getGraphics(); g.setColor(Color.white); g.fillRect(0,…