14 May 2024
darktable-cli inputfile.dng outputfile.jpg
Simple as that. Even keeps the EXIF data.
find . -type f \( -iname "*.dng" \) -exec sh -c 'darktable-cli {} ${0%.*}.jpg' {} \; -delete
pip3 install pillow-avif-plugin
from PIL import Image
import pillow_avif
img = Image.open('input.avif')
img.save('output.png')
convert image.png image.avif
cwebp input.jpg -o output.webp
dwebp input.webp -o output.png
Privacy policy
Published 2024-07-28
Privacy/data policy for the website PhilipSoerensen.com
Read the post →Get started developing Wordpress plugins in 5 minutes
Published 2024-05-14
Developing plugins for Wordpress can be easy. Start developing customized code for Wordpress today.
Read the post →How I use Slack as a logging tool
Published 2024-04-26
You can use Slack to send messages to yourself from your websites. Here I explain how I can send Slack messages from my own website.
Read the post →