Код: Выделить всё
// Write image to temp file
$raw_photo = $request->getBody();
$temp = tmpfile();
fwrite($temp, $raw_photo);
// Get the file path
$temp_meta = stream_get_meta_data($temp);
$temp_path = $temp_meta['uri'];
// Create image using Vips library
$image = Image::newFromFile($temp_path);
// Convert to JPG
$image->jpegsave($temp_path . '.jpg');
// $image->writeToFile($temp_path . '.jpg');
Подробнее здесь: [url]https://stackoverflow.com/questions/78684618/php-libvips-convert-heic-to-jpg[/url]