
imagecreatefromwbmp 함수는 PHP 4.x에서만 사용 가능합니다. PHP 7.x 버전부터는 지원되지 않습니다.
대신 imagecreatefromwbmp 함수 대신 imagecreatefromstring 함수를 사용할 수 있습니다.
#hostingforum.kr
php
$wbmp = file_get_contents('image.wbmp');
$image = imagecreatefromstring($wbmp);
또는 imagecreatefromwbmp 함수 대신 imagecreatefromstring 함수와 imagecreatefromjpeg 함수를 조합하여 사용할 수 있습니다.
#hostingforum.kr
php
$wbmp = file_get_contents('image.wbmp');
$image = imagecreatefromstring($wbmp);
if ($image === false) {
$image = imagecreatefromjpeg('image.jpg');
}
이러한 방법으로 imagecreatefromwbmp 함수를 대체할 수 있습니다.
2025-06-21 05:48