PROJET AUTOBLOG


shaarli-Links

Site original : shaarli-Links

⇐ retour index

Note: Mise en place rapide d'une galerie photos

jeudi 16 avril 2020 à 15:25
sudo apt install imagemagick php-gd

# redimensionner les images avant upload
for i in *.{jpg,JPG,jpeg}; do convert "$i" -resize 2000x2000 -strip -interlace Plane -auto-orient "${i}"; done

# dans le dossier où vous voulez mettre votre galerie :
wget https://raw.githubusercontent.com/Oros42/KISSGallery/master/index.php

# pour générer les miniatures, ouvrez votre navigateur sur l'URL de votre galerie
# ou sinon :
php index.php


Demo : https://oros42.github.io/KISSGallery/index.html
https://github.com/Oros42/KISSGallery
:-)
Permalink