PHP prevents users from uploading adult photos or nude photos ,. In this tutorial, we will learn how to prevent users from uploading adult photos or nude photos through PHP. how can I prevent users from uploading adult photos or nude photos in php,
In this tutorial, we will learn how to prevent users from uploading adult photos or nude photos through PHP.
Sample download
On phpclasses.org, I accidentally found a very useful file. developed by Bakr Alsharif, it can help developers detect bare image files based on skin pixels.
It analyzes the colors used in different parts of an image and determines whether it matches the human skin color.
As a result of the analysis, the system returns a score that reflects the possibility of image exposure.
In addition, he can output the analyzed image and mark the pixels with the color given.
Currently, it can analyze PNG, GIF, and JPEG images.
PHP
The following shows how to use this PHP class.
Let's start with the inclusion of the native filter, nf. php file.
Next, create a new class named ImageFilter and put it in a variable named $ filter.
1 |
$filter = new ImageFilter; |
Get the image score and put it in a $ score variable.
1 |
$score = $filter -> GetScore( $_FILES [ 'img' ][ 'tmp_name' ]); |
If the image score is greater than or equal to 60%, an alarm message is displayed.
123 |
if ( $score >= 60){ /*Message*/ } |
Below are all the PHP code:
123456789101112131415161718 |
/*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." ; } } ?> |
Markup language
We can use a basic HTML form to upload images.
Summary
Please remember that PHP cannot detect all naked pictures, so it is not completely credible. I hope you will find this useful.
Address: http://www.rrpowered.com/2014/04/prevent-uploads-of-adult-or-nude-pictures-using-php/
Http://www.bkjia.com/PHPjc/885997.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/885997.htmlTechArticlePHP how to prevent users from uploading adult photos or nude photos, in this tutorial, we will learn how to prevent users from uploading adult photos or nude photos through PHP. example Download Me in php...