Heim  >  Artikel  >  php教程  >  php移除图片exif信息

php移除图片exif信息

WBOY
WBOYOriginal
2016-06-06 20:14:141371Durchsuche

最简便的方法,需要gd扩展 $img = imagecreatefromjpeg ($path);imagejpeg ($img, $path, 100);imagedestroy ($img); 引用自?http://stackoverflow.com/questions/3614925/remove-exif-data-from-jpg-using-php gd

最简便的方法,需要gd扩展

$img = imagecreatefromjpeg ($path);
imagejpeg ($img, $path, 100);
imagedestroy ($img);

引用自?http://stackoverflow.com/questions/3614925/remove-exif-data-from-jpg-using-php

gd

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn