PHP: how to prevent users from uploading adult photos or nude photos. _ PHP Tutorial

Source: Internet
Author: User
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.

1 include ('nf.php');

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.

12345
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...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.