Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msankhala/image_pornographic_detect
A Drupal module to detect pornographic image when user upload the pornographic image.
https://github.com/msankhala/image_pornographic_detect
Last synced: about 2 months ago
JSON representation
A Drupal module to detect pornographic image when user upload the pornographic image.
- Host: GitHub
- URL: https://github.com/msankhala/image_pornographic_detect
- Owner: msankhala
- Created: 2014-12-17T20:03:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-30T10:17:51.000Z (almost 10 years ago)
- Last Synced: 2024-04-29T21:21:59.996Z (8 months ago)
- Size: 348 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Image pornographic detect
A simple drupal module which allow site administrator to configure image field to not allow pornographic image upload.
This module uses two third party libraries:
- [Php nudity detector](https://github.com/FreebieStock/php-nudity-detector)
- [Image nudity filter](http://www.phpclasses.org/package/3269-PHP-Determine-whether-an-image-may-contain-nudity.html)Admin interface of module allow which library to use for pornographic detection.
##### @todo
~~Porn image detect for user profile.~~Dependencies:
[Libraries API](https://www.drupal.org/project/libraries)**Steps**
- Download and extract module under `sites/all/modules`
- Download and extract `Libraries` module.
- Download **one of the library or both.**
- [Php nudity detector](https://github.com/FreebieStock/php-nudity-detector) (recommended)
- [Image nudity filter](http://www.phpclasses.org/package/3269-PHP-Determine-whether-an-image-may-contain-nudity)
- Extract and put the library under `sites/all/libraries/` and make sure path is `sites/all/libraries/php-nudity-detector` (for php nudity detector library) and `sites/all/libraries/image-nudity-filter` (for Image nudity filter library).
- Enable the module and configure any `image field` added in content type and check the pornograhpic detection option.#### Settings
- **Admin setting**
![admin setting](screenshots/admin-setting.png)- **For image field**
![Image field setting](screenshots/image-field-setting.png)- **User profile picture setting**
![User profile picture setting](screenshots/user-profile-picture-setting.png)#### Known issue
**IF you use Image nudity filter library.**
Notice: imagecolorat(): 1,400 is out of bounds in ImageFilter->GetScore() (line 62 of class.ImageFilter.php).**Solution:**
After downloading [Image nudity filter](http://www.phpclasses.org/package/3269-PHP-Determine-whether-an-image-may-contain-nudity) edit ImageFilter->GetScore() method in class.ImageFilter.php file at line 58 and 60 change `less then or equal <=` operator to `less then <` operator.Change:
```php
for($i=1; $i<=$x; $i++)
{
for($j=1; $j<=$y; $j++)
{```
to:```php
for($i=1; $i<$x; $i++)
{
for($j=1; $j<$y; $j++)
{```