Created
April 24, 2020 09:10
-
-
Save brrd/4404ac15a3629ac231187deef66a8252 to your computer and use it in GitHub Desktop.
ImageMagick append scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM Script à copier dans le dossier où se trouvent les images. | |
@echo off | |
setlocal enabledelayedexpansion enableextensions | |
mkdir output | |
set list= | |
for %%f in (*.png) do @set list=!list! %%f | |
set list=%list:~1% | |
echo Traitement des images : %list% | |
magick convert %list% -append output/resultat.png | |
endlocal | |
pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
mkdir output | |
magick convert $(find . -type f -name "*.jpg") -append output/resultat.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment