skip to Main Content

so I am actually trying to get into software development and I currently have just spent a few days making a GUI in Photoshop. Now I know how to code in Java and Python but I have never implemented a GUI before. I am stuck on this because I know I can write the code and everything but how do I take what I made in Photoshop add some java or python code to it to make certain things happen? I have zero experience in this and I have only written code to accomplish tasks without the need for a GUI.

2

Answers


  1. but how do I take what I made in Photoshop add some java or python code to it to make certain things happen

    No, you cannot expect things to happen magically, for that you need to learn front-end technologies like HTML, CSS, JavaScript etc and manually convert the UI which is in Photoshop to corresponding code. This applies for web applications.

    If you want to build desktop application, you need to use Swings, SWT etc to achieve the same.

    I have zero experience in this

    If this is the case, I recommend to read some basic tutorials, then you will get idea what to do

    Login or Signup to reply.
  2. I guess you want to transfer your UI design into GUI in program.

    It’s similar to web design: everything in Photoshop is design or resource, it’s not useful and accessible unless you transfer them into html/css/javascript. Design in Photoshop could provide you element should be what size, what color and where to put, also what you see (like picture resource), but you need to write html code for visiting in web.

    I am not familiar with Java GUI, maybe Swing is an option. For python, you could try wxPython or PyQt for GUI.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search