由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - [转载] create gif/png image in C or java
相关主题
Re: SWING APPLET如何显示IMAGE?java applet IE能打开chrome打不开是咋回事?
Re: Display, edit, and save Image on HTM[转载] A problem about ppt and applet
Java Resource一问Re: getImage&drawImage的问题
Re: [转载] create gif/png image in C or jaHow to scroll an JInternalFrame
How to append something on a file?a question about "setXORMode", urgent!
How to write a file to the same directory of the class file?Java drawImage help please. Urgent!
急问如何append double 数据到txt文件Graphics question
why it does not work?? :(((How to display .bmp image
相关话题的讨论汇总
话题: png话题: image话题: gif话题: java话题: jrf
进入Java版参与讨论
1 (共1页)
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!

1 (共1页)
进入Java版参与讨论
相关主题
How to display .bmp imageHow to append something on a file?
How to resize an icon?How to write a file to the same directory of the class file?
怎么能够减少image上的锯齿?急问如何append double 数据到txt文件
Question: OutOfMemoryError when drawImagwhy it does not work?? :(((
Re: SWING APPLET如何显示IMAGE?java applet IE能打开chrome打不开是咋回事?
Re: Display, edit, and save Image on HTM[转载] A problem about ppt and applet
Java Resource一问Re: getImage&drawImage的问题
Re: [转载] create gif/png image in C or jaHow to scroll an JInternalFrame
相关话题的讨论汇总
话题: png话题: image话题: gif话题: java话题: jrf