圖形驗證碼顯示實現 筆記
阿新 • • 發佈:2019-02-11
影象驗證碼顯示功能使用 google Kaptcha 驗證碼產品 實現前臺驗證碼顯示功能.
1. 座標新增
<dependency>
<groupId>com.github.axet</groupId>
<artifactId>kaptcha</artifactId>
<version>0.0.9</version>
</dependency>
2. SpringMvc 環境配置
<bean id="captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha" >
<property name="config">
<bean class="com.google.code.kaptcha.util.Config">
<constructor-arg>
<props>
<prop key="kaptcha.border">yes</prop><!--是否有邊框 -->
<prop key="kaptcha.border.color">105,179,90</prop><!--設定邊框顏色 -->
<prop key="kaptcha.textproducer.font.color">green</prop><!--驗證碼文字字元顏色 預設為Color.BLACK -->
<prop key="kaptcha.session.key">code</prop><!--驗證碼 -->
<prop key="kaptcha.textproducer.font.names">宋體,楷體,微軟雅黑</prop><!--設定字型樣式 -->
<prop key="kaptcha.border.thickness"></prop><!--邊框粗細度 預設為1 -->
<prop key="kaptcha.producer.impl"></prop><!--驗證碼生成器 預設為DefaultKaptcha -->
<prop key="kaptcha.textproducer.impl"></prop><!-- 驗證碼文字生成器 預設為DefaultTextCreator -->
<prop key="kaptcha.textproducer.char.string"></prop><!--驗證碼文字字元內容範圍 預設為abcde2345678gfynmnpwx -->
<prop key="kaptcha.textproducer.char.length">4</prop><!-- 驗證碼文字字元長度 預設為5 -->
<prop key="kaptcha.textproducer.font.size">40</prop><!--驗證碼文字字元大小 預設為40 -->
<prop key="kaptcha.textproducer.char.space">6</prop> <!--驗證碼文字字元間距 預設為2 -->
<prop key="kaptcha.image.width">200</prop> <!--驗證碼圖片寬度 預設為200 -->
<prop key="kaptcha.image.height">50</prop> <!--驗證碼圖片高度 預設為40 -->
</props>
</constructor-arg>
</bean>
</property>
</bean>
3. Controller 準備
@Resource
private Producer captchaProducer;
@RequestMapping("getKaptchaImage")
public void getKaptchaImage(HttpServletRequest request,
HttpServletResponse response) throws
Exception {
response.setDateHeader("Expires", 0);
// Set standard HTTP/1.1 no-cache headers.
response.setHeader("Cache-Control", "no-store, no-cache,
must-revalidate");
// Set IE extended HTTP/1.1 no-cache headers (use addHeader).
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
// Set standard HTTP/1.0 no-cache header.
response.setHeader("Pragma", "no-cache");
// return a jpeg
response.setContentType("image/jpeg");
// create the text for the image
String capText = captchaProducer.createText();
System.out.println("驗證碼:"+capText);
// store the text in the session
request.getSession().setAttribute(P2pConstant.PICTURE_VERIFY_KEY,
capText);
// create the image with the text
BufferedImage bi = captchaProducer.createImage(capText);
ServletOutputStream out = response.getOutputStream();
// write the data out
ImageIO.write(bi, "jpg", out);
try {
out.flush();
} finally {
out.close();
}
}