]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/tools/img2xpm.py
3 img2xpm.py -- convert several image formats to XPM
7 img2xpm.py [options] image_files...
11 -o <dir> The directory to place the .xpm file(s), defaults to
12 the current directory.
14 -m <#rrggbb> If the original image has a mask or transparency defined
15 it will be used by default. You can use this option to
16 override the default or provide a new mask by specifying
17 a colour in the image to mark as transparent.
19 -n <name> A filename to write the .xpm data to. Defaults to the
20 basename of the image file + '.xpm' This option overrides
27 from wxPython
import wx
29 img2img
.main(sys
.argv
[1:], wx
.wxBITMAP_TYPE_XPM
, ".xpm", __doc__
)