diff --git a/README.md b/README.md index 7e4bbda..109a20e 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ allprojects { 在项目的build.gradle中添加 ```text dependencies { - compile 'com.github.whvcse:EasyCaptcha:1.6.1' + compile 'com.github.whvcse:EasyCaptcha:1.6.2' } ``` @@ -83,14 +83,14 @@ dependencies { com.github.whvcse EasyCaptcha - 1.6.1 + 1.6.2 ``` ### 3.3.jar包下载 -[EasyCaptcha-1.6.1.jar](https://gitee.com/whvse/EasyCaptcha/releases) +[EasyCaptcha-1.6.2.jar](https://gitee.com/whvse/EasyCaptcha/releases) maven导入jar包,在项目根目录创建`libs`文件夹,然后pom.xml添加如下: ``` @@ -98,7 +98,7 @@ maven导入jar包,在项目根目录创建`libs`文件夹,然后pom.xml添 com.github.whvcse EasyCaptcha 1.6.1 - ${basedir}/libs/EasyCaptcha-1.6.1.jar + ${basedir}/libs/EasyCaptcha-1.6.2.jar ``` diff --git a/pom.xml b/pom.xml index d7d9683..34b173f 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.wf easy-captcha - 1.6.1-RELEASE + 1.6.2-RELEASE jar EasyCaptcha diff --git a/src/main/java/com/wf/captcha/base/Captcha.java b/src/main/java/com/wf/captcha/base/Captcha.java index 0d56679..9ca2d43 100644 --- a/src/main/java/com/wf/captcha/base/Captcha.java +++ b/src/main/java/com/wf/captcha/base/Captcha.java @@ -271,7 +271,7 @@ public abstract class Captcha extends Randoms { } public void setFont(int font, int style, float size) throws IOException, FontFormatException { - this.font = Font.createFont(Font.TRUETYPE_FONT, new File(getClass().getResource("/" + FONT_NAMES[font]).getFile())).deriveFont(style, size); + this.font = Font.createFont(Font.TRUETYPE_FONT, getClass().getResourceAsStream("/" + FONT_NAMES[font])).deriveFont(style, size); } public int getLen() {