User Profile

Collapse

Profile Sidebar

Collapse
bushticals
bushticals
Last Activity: Mar 25 '09, 12:24 PM
Joined: Aug 7 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • bushticals
    replied to wxpython cross-platform image viewer
    ok yes that's helpful. however, if i do this, this will limit my program to only run on the windows platform... is there a way i can make the image open with the default image viewer?
    See more | Go to post

    Leave a comment:


  • bushticals
    replied to image meta data read
    ok, this is good for getting the basic image data, but i want to extract the metadata of the image... like i said, comments, keywords, title, author etc.
    See more | Go to post

    Leave a comment:


  • bushticals
    replied to wxpython cross-platform image viewer
    still, this is another problem im having with my app... if anyone cann help?
    See more | Go to post

    Leave a comment:


  • bushticals
    replied to image meta data read
    i dont understand what is meant by this? :S
    See more | Go to post

    Leave a comment:


  • bushticals
    replied to image meta data read
    HELP!!! i cant continue without any help...
    please guys!
    See more | Go to post

    Leave a comment:


  • bushticals
    replied to What is your OS and Python Version
    i like komodo particularly because it has an interactive python shell inbuilt
    See more | Go to post

    Leave a comment:


  • bushticals
    replied to What is your OS and Python Version
    I use Windows Vista Home edition using Python 2.5.1
    I use active state komodo IDE 4.1 for most of my tasks at the moment. using wx.Python for my GUI
    See more | Go to post

    Leave a comment:


  • bushticals
    started a topic image meta data read

    image meta data read

    okay, im coming along with my project fairly hassle free, however i was wondering if someone knows how i can read/ extract meta data from image files (in windows)...
    for example, when u right click on an image in windows explorer and click properties, it shows u information about the image such as title, keywords, author comments, etc.
    i want to display this information in my GUI
    im using wxpython at the moment.

    ...
    See more | Go to post

  • bushticals
    replied to Image in python
    you need to have wxpython installed

    Code:
    #Image
    
    import os
    
            image = wx.Image('imagename.jpg')
            imgResizeMax(image,(225, 225)) # Resize your image to 225X225 pixels
            self.picturedisplay = wx.StaticBitmap(self.panel,wx.ID_ANY,bitmap=image.ConvertToBitmap(),pos=(10,10),size=(283,223)) #set the size of the field the image will be displayed in, and everything else.
    ...
    See more | Go to post

    Leave a comment:


  • bushticals
    started a topic wxpython cross-platform image viewer

    wxpython cross-platform image viewer

    i was wondering if anyone could write me a definition that will open a currently in use image file in the windows picture and fax viewer? im having troubles...
    anyhelp much appreciated!
    See more | Go to post

  • bushticals
    replied to open new window frame?
    never mind guys, figured it out myself!

    Code:
    #Menubar
    new = wx.MenuItem(file, 101, '&New\tCtrl+N', 'Creates a new document')
             new.SetBitmap(wx.Bitmap('icons/stock_new-16.png'))
             file.AppendItem(new) 
    
    
    #Button Bind
    self.Bind(wx.EVT_MENU, self.NewApplication, id=101)
    
    
    #Menubar button- new window method
    def NewApplication(self, event):
    ...
    See more | Go to post
    Last edited by bartonc; Aug 7 '07, 06:12 AM. Reason: forgotten closing [/CODE] tag

    Leave a comment:


  • bushticals
    started a topic open new window frame?

    open new window frame?

    i'm new to python... im making a GUI for an image information editing program that i am doing for school. i have a button in my menu bar that i want to open a new window (same GUI) just like in internet explorer when you click new window. hope that makes sense... i'd imagine it's simple to do, but im stuck. any help? much apprecited! i have the button... basically need a definition... new window frame.
    See more | Go to post
No activity results to display
Show More
Working...