convert -size 100x100 xc:none transparency.png
convert
is a tool that's part of the ImageMagick image manipulation library-size 100x100
specifies the dimensions of the image to createxc:none
is a symbolic source image, indicating to convert "from nothing"transparency.png
is the destination filename, the image format is automatically determined by the extensionRequires the ImageMagick image manipulation library.