All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.atomtool.captcha.utils.encoder.EncoderHelper Maven / Gradle / Ivy

The newest version!

package cn.atomtool.captcha.utils.encoder;


import cn.atomtool.captcha.service.Captcha;
import cn.atomtool.captcha.service.CaptchaService;

import javax.imageio.ImageIO;
import java.io.IOException;
import java.io.OutputStream;

public class EncoderHelper {

	public static String getChallangeAndWriteImage(CaptchaService service, String format, OutputStream os) throws IOException {
		Captcha captcha = service.getCaptcha();
		ImageIO.write(captcha.getImage(), format, os); 
		return captcha.getChallenge();
	}
	
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy