I have to write an application in python for image processing.I have made scripts of all the image editing options. Now I want to add GUI in it.

I want a window where I can give the path of an image on which I want to perform the editing!
At the next page the image should appear at one side and at the other side I want a list of options for the editing.
This is what I want, please help me..

Recommended Answers

All 3 Replies

Okay, if not the above problem..
can anyone please help mein building a layout, similar to the following attached picture..
I'm trying to make a similar one..but need help!
till now I'm able to make just write this code..

from Tkinter import *

class App:

    def __init__(self, master):

        frame = Frame(master)
        frame.grid()

        self.w = Label(master, text="Specify the parameters below and
click OK",bg="green",font=("Helvetica", 12))
        self.w.grid(row=0)

        self.button = Button(frame, text="QUIT", fg="red", command=frame.quit)
        self.button.grid(row=100,column=100)

        self.save_ch = Button(frame, text="OK", command=self.save_change)
        self.save_ch.grid(row=6,column=1)

    def save_change(self):
        print "Saved"

root = Tk()

app = App(root)

root.mainloop()

Fullscreen_capture_722012_15742_PM.bmp5 This is the layout I need..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.