cordoprod Posted July 11, 2008 Share Posted July 11, 2008 Hello. Think this is the wrong board, sorry. But anyway i was wondering.. If there was any scripts or tutorials where php scans an image and checks if there is a face there, only one face, and not any disturbing elements for example. It would be great to have on my community system or else i'll have to approve profile images manually. Thanks Link to comment https://forums.phpfreaks.com/topic/114234-scan-image-to-approve-it/ Share on other sites More sharing options...
vikramjeet.singla Posted July 11, 2008 Share Posted July 11, 2008 as per my knowledge this is not possible by PHP alone Link to comment https://forums.phpfreaks.com/topic/114234-scan-image-to-approve-it/#findComment-587402 Share on other sites More sharing options...
waynew Posted July 11, 2008 Share Posted July 11, 2008 I'd say if approving images is a very important feature that you need; set up a approval system where a moderator or admin can choose to allow or deny the image. This can be done easily. Just add another column called status which holds a status number of the image. The column can be a tinyint(1) because it will hold only the numbers 1 - 3. 1 = not looked at yet. 2 = approved. 3 = denied. You can then display only the images with status code 2 and delete all images with a status code of 3. Hope that helps. Link to comment https://forums.phpfreaks.com/topic/114234-scan-image-to-approve-it/#findComment-587412 Share on other sites More sharing options...
cordoprod Posted July 11, 2008 Author Share Posted July 11, 2008 Thanks. I know i can do that, i was just wondering for another function. Thanks anyway Link to comment https://forums.phpfreaks.com/topic/114234-scan-image-to-approve-it/#findComment-587426 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.