F**e 发帖数: 593 | 1 【 以下文字转载自 Programming 讨论区,原文如下 】
发信人: Fine (糖琼), 信区: Programming
标 题: create gif/png image in C or java
发信站: The unknown SPACE (Wed Jul 9 18:14:13 2003) WWW-POST
Anyone can provide some examples or links to tutorial of how to create gif/png
images in C or java?
I need to include some dynamic images on webpage, java applet kind of solve
the problem but I need to get the real image file in gif or png or jpg format
to get better handling on the image. Thanks a lot! | o*******r 发帖数: 3 | 2 JimiRasterImage jrf
= Jimi.createRasterImage( );
if (fileType == 1)
{
Jimi.putImage("image/jpg", jrf,
new FileOutputStream(fileName));
}
else if (fileType == 3){
Jimi.putImage("image/png", jrf,
new FileOutputStream(fileName));
}
【在 F**e 的大作中提到】 : 【 以下文字转载自 Programming 讨论区,原文如下 】 : 发信人: Fine (糖琼), 信区: Programming : 标 题: create gif/png image in C or java : 发信站: The unknown SPACE (Wed Jul 9 18:14:13 2003) WWW-POST : Anyone can provide some examples or links to tutorial of how to create gif/png : images in C or java? : I need to include some dynamic images on webpage, java applet kind of solve : the problem but I need to get the real image file in gif or png or jpg format : to get better handling on the image. Thanks a lot!
|
|