It appears that Pillow itself cannot handle HEIC/HEIF, but a plugin can. See GitHub issue for an interesting discussion: Support for HEIF · Issue #2806 · python-pillow/Pillow · GitHub. Beware the licensing dragons and "bat-shit insane" implementation.
Alternatively for a site where we use ImageMagick, we had to add a decode delegate.
# /etc/ImageMagick-6/delegates.xml
# Add this line under the delegates section
<delegate decode="heic" command=""heif-convert" "%i" "%o.jpg" ;/bin/mv "%o.jpg" "%o""/>
For non Safari browsers, to display them directly you need a viewer, like:
The use case is to store the original image but have the scaled down versions in other formats like jpeg? Or you want to just display the image, thus transforming it after upload in a more suitable format?
I think that in edit, Plone should handle (at least with a warning) unsupported formats in the form. Is this complex or we can find it only at scaling time?
One more follow up, for people who use ancient systems that don't support the latest version of image conversion software, Apple decided to change the format of HEIC files in the release of iOS 18 sometime in 2024. ImageMagick 6 cannot convert HEIC or HEIF files, but ImageMagick 7 can. Here's its license, which doesn't sound bat-shit insane, but reasonable, although I am not an attorney.
Back in the day, I used IM to convert a batch of images in a folder, resizing, cropping, and doing all kinds of acrobatics with a single shell command, outputting them to specified filenames and paths. IM is pretty fast and intuitive, too.