问题出在哪里呢?
我的实现描述:
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
用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144
#2
我是想让图片看起来不模糊,越清楚越好!
#3
一楼难得帮你看一次,居然还理解错了意思。
#1
是想要让文字看起来很模糊?防止验证码识别工具?
用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144
用组件来做吧:Jcaptcha,这里有样例:
http://gogole.iteye.com/blog/567144
#2
我是想让图片看起来不模糊,越清楚越好!
#3
一楼难得帮你看一次,居然还理解错了意思。