]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/tools/img2img.py
1 #----------------------------------------------------------------------
2 # Name: wxPython.tools.img2img
3 # Purpose: Common routines for the image converter utilities.
8 # Copyright: (c) 2002 by Total Control Software
9 # Licence: wxWindows license
10 #----------------------------------------------------------------------
13 import sys
, os
, glob
, getopt
14 from wxPython
.wx
import *
16 if wxPlatform
== "__WXGTK__":
17 # some bitmap related things need to have a wxApp initialized...
20 wxInitAllImageHandlers()
22 def convert(file, maskClr
, outputDir
, outputName
, outType
, outExt
):
23 if os
.path
.splitext(file)[1].lower() == ".ico":
24 icon
= wxIcon(file, wxBITMAP_TYPE_ICO
)
25 img
= wxBitmapFromIcon(icon
)
27 img
= wxBitmap(file, wxBITMAP_TYPE_ANY
)
30 return 0, file + " failed to load!"
34 mask
= wxMaskColour(img
, maskClr
)
41 newname
= os
.path
.join(outputDir
,
42 os
.path
.basename(os
.path
.splitext(file)[0]) + outExt
)
43 if img
.SaveFile(newname
, outType
):
44 return 1, file + " converted to " + newname
46 img
= wxImageFromBitmap(img
)
47 if img
.SaveFile(newname
, outType
):
50 return 0, file + " failed to save!"
55 def main(args
, outType
, outExt
, doc
):
56 if not args
or ("-h" in args
):
65 opts
, fileArgs
= getopt
.getopt(args
, "m:n:o:")
66 except getopt
.GetoptError
:
83 for file in glob
.glob(arg
):
84 if not os
.path
.isfile(file):
86 ok
, msg
= convert(file, maskClr
, outputDir
, outputName
,