Is there any way to remove the EXIF data from a JPG using PHP? I have heard of PEL, but I\'m hoping there\'s a simpler way. I am uploading images that will be displayed onli
this is the simplest way:
$images = glob($location.'/*.jpg'); foreach($images as $image) { $img = imagecreatefromjpeg($image); imagejpeg($img,$image,100); }