Media
GIF-Bild-Extrahierer
Einzelbilder aus GIF-Dateien extrahieren mit anpassbaren Ausgabeformat- und Benennungsoptionen
file· Dateiergebnis
Schnellstart
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
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/de/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'