在這份教程中,我們將會(huì)學(xué)習(xí)到如何阻止用戶通過(guò)上傳圖片,這個(gè)測(cè)試了一下只有一點(diǎn)作用,但人家真的要做了估計(jì)也沒有辦法了,下面來(lái)給大家介紹解決辦法吧.
下載:http://www.rrpowered.com/code/RRPowered-NudityFilter.zip
我在phpclasses.org上面偶然發(fā)現(xiàn)一個(gè)很有用的,由Bakr Alsharif開發(fā)的可以幫助開發(fā)者基于皮膚像素點(diǎn)來(lái)檢測(cè)圖片的類文件.
它會(huì)分析在一張圖片的不同部分使用的顏色,并決定其是否匹配人類皮膚顏色的色調(diào),作為分析的結(jié)果,他會(huì)返回一個(gè)反映圖片可能性的分值,此外,他還可以輸出被分析的圖片,上面對(duì)使用給定顏色的膚色的像素進(jìn)行了標(biāo)記,當(dāng)前它可以對(duì)PNG,GIF和JPEG圖片進(jìn)行分析.
PHP下面展示了如何使用這個(gè)PHP類,讓我們先從包含過(guò)濾器,nf.php文件開始,代碼如下:
include('nf.php');
接下來(lái),創(chuàng)建一個(gè)新的名叫ImageFilter的類,然后把它放到一個(gè)叫做$filter的變量中,代碼如下:
$filter = new ImageFilter;
獲取圖片的分值并將其放到一個(gè)$score變量中,代碼如下:
$score = $filter -> GetScore($_FILES['img']['tmp_name']);
如果圖片分值大于或等于60%,那就展示一條(告警)消息,代碼如下:
if($score >= 60){
下面是所有的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.";
- }//開源代碼Vevb.com
- }
- ?>
標(biāo)記語(yǔ)言:我們可以使用一個(gè)基礎(chǔ)的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>
請(qǐng)記得,PHP不能夠檢測(cè)所有的圖片,所以不完全可信,我希望你覺得這還有點(diǎn)用處.
新聞熱點(diǎn)
疑難解答