国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

PHP 如何阻止用戶上傳成人照片或者裸照

瀏覽:5日期:2022-09-13 18:15:44

在這份教程中,我們將會學習到如何阻止用戶通過PHP上傳成人照片或者裸照.

示例 下載

我在phpclasses.org上面偶然發現一個很有用的,由Bakr Alsharif開發的可以幫助開發者基于皮膚像素點來檢測圖片裸照的類文件.

它會分析在一張圖片的不同部分使用的顏色,并決定其是否匹配人類皮膚顏色的色調.

作為分析的結果,他會返回一個反映圖片包含裸露的可能性的分值.

此外,他還可以輸出被分析的圖片,上面對使用給定顏色的膚色的像素進行了標記.

當前它可以對PNG,GIF和JPEG圖片進行分析.

PHP

下面展示了如何使用這個PHP類.

讓我們先從包含裸體過濾器,nf.php文件開始.

include ('nf.php');

接下來,創建一個新的名叫ImageFilter的類,然后把它放到一個叫做$filter的變量中.

$filter = new ImageFilter;

獲取圖片的分值并將其放到一個$score變量中.

$score = $filter -> GetScore($_FILES['img']['tmp_name']);

如果圖片分值大于或等于60%,那就展示一條(告警)消息.

if($score >= 60){/*Message*/}

下面是所有的PHP代碼:

<?php/*Include the Nudity Filter file*/include ('nf.php');/*Create a new class called $filter*/$filter = new ImageFilter;/*Get the score of the image*/$score = $filter -> GetScore($_FILES['img']['tmp_name']);/*If the $score variable is set*/if (isset($score)) { /*If the image contains nudity, display image score and message. Score value if more than 60%, it is considered an adult image.*/ if ($score >= 60) {echo "Image scored " . $score . "%, It seems that you have uploaded a nude picture."; /*If the image doesn't contain nudity*/} else if ($score < 0) {echo "Congratulations, you have uploaded an non-nude image."; }}?>標記語言

我們可以使用一個基礎的HTML表單上傳圖片.

<form method="post" enctype="multipart/form-data" action="<?php echo $SERVER['PHP_SELF'];?> ">Upload image: <input type="file" name="img" id="img" /><input type="submit" value="Sumit Image" /></form>總結

請記得,PHP不能夠檢測所有的裸體圖片,所以不完全可信.我希望你覺得這還有點用處.

原文地址:http://www.rrpowered.com/2014/04/prevent-uploads-of-adult-or-nude-pictures-using-php/

標簽: PHP
相關文章:
主站蜘蛛池模板: 西畴县| 盐山县| 杭州市| 婺源县| 松阳县| 明光市| 古丈县| 达尔| 喀什市| 屯昌县| 南城县| 五常市| 元谋县| 穆棱市| 苏尼特左旗| 时尚| 顺义区| 临武县| 玉溪市| 墨江| 安塞县| 三原县| 依兰县| 芦溪县| 乐山市| 固安县| 班玛县| 青田县| 策勒县| 满洲里市| 同德县| 社会| 永康市| 内江市| 宝丰县| 汾西县| 北辰区| 北碚区| 永年县| 沂源县| 射洪县|