Media
Extracteur d'Images GIF
Extraire des images individuelles de fichiers GIF avec des options de format de sortie et de nommage personnalisables
file· Résultat fichier
Démarrage rapide
Appelez cet outil depuis votre code en trois langages.
cURL
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/gif-to-frames' \
-F 'file=@/path/to/gifFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/fr/api/tools/gif-to-frames' \
-F 'gifFile=/path/to/file.ext' \
-F 'outputFormat=png' \
-F 'frameRange=all' \
-F 'startFrame=1' \
-F 'endFrame=0' \
-F 'frameStep=1' \
-F 'quality=100' \
-F 'backgroundColor=transparent' \
-F 'customBackgroundColor=#ffffff' \
-F 'customWidth=0' \
-F 'customHeight=0' \
-F 'maintainAspectRatio=true' \
-F 'namingPattern=frame' \
-F 'paddingLength=3'