A repository containing the main Pokemon icons from PokemonGo with the transparent
Built using ImageMagick
- ImageMagick 7.0
Massive thank you to Chrales, whos work on updating the assets from PoGO makes this app looks so good! You can find his repo here.
To normalise the images and trim the empty space, you can install ImageMagick and run the following command:
Windows Powershell:
Foreach ($f in Get-ChildItem *.png) {
magick "$f" -fuzz 15% -trim +repage "$f"
}
Unix / Linux Bash:
for f in ./*.png; do
magick "$f" -fuzz 15% -trim +repage "$f";
done
Play around with the parameters to see what you can do, ImageMagick is a very powerful tool.