最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Phyton. ttk resize photo in frame with grid - Stack Overflow

programmeradmin0浏览0评论
  • I am trying to resize a photo into a grid. So I made a frame with mainframe patent to can pack the photo without using grip and can resize it with event.width and event.heigth but using this the program compile without errors without showing any object. The code is this Complete program unfinished .py

         ###function to resize image when window size change###     
    
        def boardResize(event):     
    
           boardlabel = event.widget    
    
           _imageWidth = event.width     
    
           _imageHeight = event.height    
    
           global sizeChangedBoardImg, sizeChangedBoardPho     
    
           sizeChangedBoardImg= dynamicChangeBoardImg.resize((_imageWidth,_imageHeight))    
    
           sizeChangedBoardPho= ImageTk.PhotoImage(sizeChangedBoardImg)            
    
           boardlabel.config(image = sizeChangedBoardPho)         
    
             # avoid garbage collector    
    
           boardlabel.image = sizeChangedBoardPho        
    
    
         # Label for image    
    
         boardImage = Image.open('chargerController_bb.png')     
    
         imageWidth = int(rootSizerWidth * 0.4)    
    
         Image height = int(rootSizerHeight * 0.4)    
    
         resizedboardImage = boardImage.copy().resize((imageWidth,imageHeight))     
    
         dynamicChangeBoardImg = boardImage.copy()    
    
         photoBoard = ImageTk.PhotoImage(resizedboardImage)    
    
         board label = ttk.Label(photoFrame,image = Photo board)           
    
         boardlabel.bind('<Configure>',boardResize)    
    
         boardlabel.pack()    
    
         photoFrame.grid(column=5,row=3, rowspan = 10, sticky=(W,E,N,S))     
    
    

        

发布评论

评论列表(0)

  1. 暂无评论