img2py.py
将图像转换为PNG格式,并将其嵌入Python模块,以便在运行时将其加载到程序中。这样做的好处是,可以通过*.pyc
来调用或使用freeze
, py2exe
等编译到程序中
具体用法:wx.tools.img2py — wxPython Phoenix 4.1.2a1 documentation
下面的脚本实现将当前所在目录下的 png 文件夹的图片转换为 images.py
from wx.tools import img2py
import os
class EncodeBitmapsUtil:
def __init__(self, images_dir, target_file):
self.images_dir = images_dir
self.target_file = target_file
def run(self):
is_first = True
for root, directories, files in os.walk(self.images_dir):
for image in files:
relative_path = os.path.relpath(os.path.join(root, image), ".")
file_name = image.split('.')[0]
if is_first:
arg_str = "-F -n {} {} {}".format(file_name, relative_path, self.target_file)
is_first = False
else:
arg_str = "-a -F -n {} {} {}".format(file_name, relative_path, self.target_file)
img2py.main(arg_str.split())
if __name__ == '__main__':
root_path = '.'
images_dir = os.path.join(root_path, 'png')
target_image_file = os.path.join(root_path, 'images.py')
EncodeBitmapsUtil(images_dir, target_image_file).run()
# bitmap = getattr(images, image_id).GetBitmap()
在其他脚本只需导入 images
,就可以使用对应的图标,其中 icon_name
是对应 png 的图片名:
import images
# 下面两种方式时等价的
bitmap = getattr(images, ”icon_name“).GetBitmap()
bitmap = images.icon_name.GetBitmap()
参考: