91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java圖片滑動驗證(登錄驗證)原理與實現方法詳解

發布時間:2020-10-17 10:33:21 來源:腳本之家 閱讀:193 作者:我走小路 欄目:編程語言

本文實例講述了java圖片滑動驗證(登錄驗證)原理與實現方法。分享給大家供大家參考,具體如下:

這是我簡單做出的效果圖,處理300X150px的校驗圖,并把圖片發到前端,用時50毫秒左右,速度還是非常快的。

 java圖片滑動驗證(登錄驗證)原理與實現方法詳解

原理:

1.利用java從大圖中隨機摳出一張小圖,并在大圖上給摳出小圖的位置加陰影,然后把這兩張圖片返回給前端;

2.前端獲取圖片,用戶滑動小圖到陰影的位置,獲取小圖滑動的距離,返回給java后臺進行校驗;

3.校驗通過,返回校驗通過編號;

4.前端調登錄接口,把賬號、密碼、和校驗編號傳到Java后臺進行登錄。

實現:

1.計算需要的小圖輪廓,用二維數組來表示,二維數組有兩張值,0和1,其中0表示沒有顏色,1有顏色,如下圖,我要摳圖的輪廓是這樣的:

java圖片滑動驗證(登錄驗證)原理與實現方法詳解

左邊和下邊有有半圓,這個根據圓的公式就可以了,代碼示例:

static int targetLength=55;//小圖長
static int targetWidth=45;//小圖寬
static int circleR=6;//半徑
static int r1=3;//距離點
/**
 * 
* @Createdate: 2019年1月24日上午10:52:42
* @Title: getBlockData
* @Description: 生成小圖輪廓
* @author mzl
* @return int[][]
* @throws
 */
private static int[][] getBlockData() {
    int[][] data = new int[targetLength][targetWidth];
    double x2 = targetLength-circleR;
    //隨機生成圓的位置
    double h2 = circleR + Math.random() * (targetWidth-3*circleR-r1);
    double po = circleR*circleR;
    double xbegin = targetLength-circleR-r1;
    double ybegin = targetWidth-circleR-r1;
    for (int i = 0; i < targetLength; i++) {
        for (int j = 0; j < targetWidth; j++) {
            double d3 = Math.pow(i - x2,2) + Math.pow(j - h2,2);
            double d2 = Math.pow(j-2,2) + Math.pow(i - h2,2);
            if ((j <= ybegin && d2 <= po)||(i >= xbegin && d3 >= po)) {
                data[i][j] = 0;
            } else {
                data[i][j] = 1;
            }
        }
    }
    return data;
}

2.根據計算處理的小圖輪廓,在大圖上摳圖

/**
 * 
* @Createdate: 2019年1月24日上午10:51:30
* @Title: cutByTemplate
* @Description: 生成小圖片、給大圖片添加陰影
* @author mzl
* @param oriImage
* @param targetImage
* @param templateImage
* @param x
* @param y void
* @throws
 */
private static void cutByTemplate(BufferedImage oriImage,BufferedImage targetImage, int[][] templateImage, int x,int y){
    for (int i = 0; i < targetLength; i++) {
        for (int j = 0; j < targetWidth; j++) {
            int rgb = templateImage[i][j];
            // 原圖中對應位置變色處理
            int rgb_ori = oriImage.getRGB(x + i, y + j);
            if (rgb == 1) {
      //摳圖上復制對應顏色值
                targetImage.setRGB(i, j, rgb_ori);
      //原圖對應位置顏色變化
                oriImage.setRGB(x + i, y + j, rgb_ori & 0x363636 );
            }else{
                //這里把背景設為透明
                targetImage.setRGB(i, j, rgb_ori & 0x00ffffff);
            }
        }
    }
}

3.把大圖小圖轉base64碼,方便返回給前端

/**
 * 
* @Createdate: 2019年1月24日上午11:49:42
* @Title: createImage
* @Description: 獲取大圖,小圖Base64碼
* @author mzl
* @param url
* @return Map<String,String>
* @throws
 */
public static Map<String,String> createImage(String url,int L,int W,Map<String,String> resultMap){
     try {
         BufferedImage bufferedImage = ImageIO.read(new FileInputStream(url));
         BufferedImage target= new BufferedImage(targetLength, targetWidth, BufferedImage.TYPE_4BYTE_ABGR);
         cutByTemplate(bufferedImage,target,getBlockData(),L,W);
         resultMap.put("b", getImageBASE64(bufferedImage));//大圖
         resultMap.put("s", getImageBASE64(target));//小圖
    } catch (IOException e) {
        e.printStackTrace();
    }finally{
        return resultMap;
    }
}
/**
* 
* @Createdate: 2019年1月24日上午11:14:19
* @Title: getImageStr
* @Description: 圖片轉BASE64
* @author mzl
* @param image
* @return
* @throws IOException String
* @throws
*/
public static String getImageBASE64(BufferedImage image) throws IOException {
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ImageIO.write(image,"png",out);
        byte[] b = out.toByteArray();//轉成byte數組
    BASE64Encoder encoder = new BASE64Encoder();
    return encoder.encode(b);//生成base64編碼 
}

到此圖片驗證關鍵代碼完畢。

更多關于java算法相關內容感興趣的讀者可查看本站專題:《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

奉贤区| 绩溪县| 沂水县| 张家川| 达孜县| 正安县| 龙南县| 土默特右旗| 扬中市| 兖州市| 治县。| 博乐市| 石狮市| 玛多县| 安福县| 西林县| 同德县| 赤城县| 儋州市| 玉树县| 大安市| 雷州市| 阳春市| 巫溪县| 揭东县| 绍兴县| 邵武市| 嘉定区| 清徐县| 宁武县| 丁青县| 边坝县| 沭阳县| 两当县| 三穗县| 天门市| 酉阳| 汝州市| 桃园市| 中山市| 安岳县|