gif to apng
1.0.0
Convertir un gif en apng
Ce module est un simple wrapper autour de gif2apng car je n'ai trouvé aucun autre module pour créer apng dans le nœud.
# for code reuse
yarn add @beenotung/gif-to-apng
# for cli integration (command line)
yarn global add @beenotung/gif-to-apng
en javascript
const toApng = require ( '@beenotung/gif-to-apng' )
toApng ( 'path/to/image.gif' )
. then ( ( ) => console . log ( 'Done ?' ) )
. catch ( error => console . log ( 'Something went wrong ?' , error ) )
ou dans la coquille
gif-to-apng example.gif
Convertir un .gif en apng
Type : string
Chemin d'accès au gif que vous souhaitez convertir
Type : string
Chemin facultatif vers le fichier de sortie, par défaut la source avec l'extension .png
gif2apng réalisé par Max Stepin
gif-to-apng réalisé par albinekb