2014年7月30日水曜日

JavaFX8でPPMファイルのビューアを作る

JavaFX8でPPMファイルのビューアを作りました。 表示するだけであればこれで十分だと思います。 まじめに作るのであればPPMファイルの種類別の読み込み、ファイル形式のチェックなど色々細かいことをしないといけなさそうです。

3 件のコメント:

戒色 さんのコメント...

Is this incorrect?
I change the height and width or I will get Index Out of Bound Exception.
for(int y=0;y<height;y++){
for(int x=0;x<width;x++){
int r = scanner.nextInt();
int g = scanner.nextInt();
int b = scanner.nextInt();
Color color = Color.rgb(r, g, b);
pixelWriter.setColor(x, y, color);
}
}

sanofc さんのコメント...

もう遅いと思うけど、もう少し情報がほしいなあ。。

戒色 さんのコメント...

x is for width, not for height(in your code), I think. y vice versa.