sudo add-apt-repository ppa:strukturag/libheif
sudo apt-get install libheif-examples
sudo apt-get update
heif-convert infile.heif outfile.jpg
или
#!/bin/bash
for f in *.HEIC
do
echo „Working on file $f“
heif-convert $f $f.jpg
done
sudo add-apt-repository ppa:strukturag/libheif
sudo apt-get install libheif-examples
sudo apt-get update
heif-convert infile.heif outfile.jpg
или
#!/bin/bash
for f in *.HEIC
do
echo „Working on file $f“
heif-convert $f $f.jpg
done
Вашият коментар