基于java的图片文件格式转换和线性缩放 - 编程入门网
*.gif file.renameTo(new File(dest.substring(0, end) + ".gif")); // jpg to gif AnimatedGifEncoder e = new AnimatedGifEncoder(); e.start(dest); e.addFrame(file_in); e.finish(); }这里用到了AnimatedGifEncoder 类,是我在网上搜索到的,对gif编码提供了一个实现,虽然还有待晚善的地方,不过单作格式转关已经够用了:)
AnimatedGifEncoder e = new AnimatedGifEncoder();e.start(dest);e.addFrame(file_in);e.finish(); 基于java的图片文件格式转换和线性缩放(2)时间:2007-05-30 需要注意的是:AnimatedGifEncoder 不能对所有格式的图片正确的识别,所以先要将其他格式转为jpg格式(最简单的方法是用imageIO)BufferedImage file_in = null;File file = new File(dest);try { file_in = javax.imageio.ImageIO.read(file);} catch (IOException e) { e.printStackTrace();} 这样直接放入BufferedImage中就ok了 e.addFrame(file_in); 实际的编码过程在上面这句完成。 int end = dest.lastIndexOf(".");file.deleteOnExit();// output *.giffile.renameTo(new File(dest.substring(0, end) + ".gif")); 最后,在完成之前别忘了用上面几句消灭证据哟:) 当然这种方法其实并不好,最彻底的方法是修改AnimatedGifEncoder,不过做人涅要厚道坏悖 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |