java生成文字图片模糊

时间:2023-02-10 23:06:16
java生成文字图片模糊,我如何做才能得到想要的图片
问题出在哪里呢?
我的实现描述:
BufferedImage bi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); //
Graphics2D g2 = (Graphics2D) bi.getGraphics();
g2.setBackground(new Color(255, 255, 255));
g2.clearRect(0, 0, width, height);//
g2.setFont(font); // 
g2.setPaint(color); //
FontRenderContext context = g2.getFontRenderContext(); // 
Rectangle2D bounds = font.getStringBounds(str, context);// 
g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);//
g2.dispose();
FileOutputStream out = new FileOutputStream(sbFile);   
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);   
encoder.encode(bi);   
out.close();

3 个解决方案

#1


是想要让文字看起来很模糊?防止验证码识别工具?

用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144

#2


我是想让图片看起来不模糊,越清楚越好!
引用 1 楼  的回复:
是想要让文字看起来很模糊?防止验证码识别工具?

用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144

#3


一楼难得帮你看一次,居然还理解错了意思。

#1


是想要让文字看起来很模糊?防止验证码识别工具?

用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144

#2


我是想让图片看起来不模糊,越清楚越好!
引用 1 楼  的回复:
是想要让文字看起来很模糊?防止验证码识别工具?

用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144

#3


一楼难得帮你看一次,居然还理解错了意思。