
Gmagick::removeimageprofile 함수는 이미지 프로파일을 제거하는 데 사용됩니다. 이 함수는 프로파일 이름을 인수로 받습니다. 예를 들어, EXIF 프로파일을 제거하려면 'EXIF'를 인수로 사용합니다.
#hostingforum.kr
php
$gm = new Gmagick('image.jpg');
$gm->removeImageProfile('EXIF');
$gm->writeImage('image_without_exif.jpg');
이 함수는 다음 프로파일을 제거할 수 있습니다.
- EXIF
- IPTC
- XMP
- ICC
- GPS
- GeoTIFF
프로파일 이름을 인수로 사용하여 제거할 수 있습니다.
#hostingforum.kr
php
$gm->removeImageProfile('IPTC'); // IPTC 프로파일 제거
$gm->removeImageProfile('XMP'); // XMP 프로파일 제거
$gm->removeImageProfile('ICC'); // ICC 프로파일 제거
$gm->removeImageProfile('GPS'); // GPS 프로파일 제거
$gm->removeImageProfile('GeoTIFF'); // GeoTIFF 프로파일 제거
이 함수는 이미지 프로파일을 제거하는 데 사용됩니다. 프로파일 이름을 인수로 받습니다.
2025-07-30 16:23