Posts

Showing posts from October, 2019
Do your iPhone device photos end up on your PC as .heic photos? This seems like it's a good format for the future but lots of websites don't yet support it for uploading photos. Rather than switch back to jpg/png here's a quick way of converting when you need to: First, download and install libvips -  https://libvips.github.io/libvips/ Now open up a Powershell prompt in a folder that has the images you need to convert: ls *.heic | % {vips.exe jpegsave $_.FullName ($_.BaseName+'.jpg')} This will loop through and create a jpg file for every heic file in the folder.