def draw_photo_folder_images(self, first_pic, last_pic):
# load and display first image
first = wx.Image(first_pic, wx.BITMAP_TYPE_ANY)
first = first.Scale(225, 225, wx.IMAGE_QUALITY_HIGH)
first = first.ConvertToBitmap()
localfiles_info_pnl.photo_folder_first_pic = wx.StaticBitmap(self, -1, first, (620, 310), (first.GetWidth(), first.GetHeight()))
# load and display last image
last = wx.Image(last_pic, wx.BITMAP_TYPE_ANY)
last = last.Scale(225, 225, wx.IMAGE_QUALITY_HIGH)
last = last.ConvertToBitmap()
localfiles_info_pnl.photo_folder_last_pic = wx.StaticBitmap(self, -1, last, (620, 565), (last.GetWidth(), last.GetHeight()))
评论列表
文章目录