Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

web design PSD to html -> more direct ways? [closed]

Tags:

html

layout

At work I see one colleague designing a site in Photoshop/Fireworks, I see another taking this data, slicing it up and using Dreamweaver to rebuild the same from scratch.

It seems like too much mucking around!

I know that Photoshop can output a tables based HTML, and Fireworks will create divs with absolute positioning; neither appear to be very helpful.

Admittedly, I haven't tried much of (DW/FW) (CS4/CS3) since becoming a programmer, so I don't know if new versions are addressing this work flow issue, but are we still double handling things?

Can we attach some sort of layout metadata (this is a rollover button, this will be a SWF, this will be text, this logo will hide "xyz" <h1> text etc) to slices to aid in layout generation? are there some secret tools which assist in this conversion process? Or are we still restricted to doing things by hand?

The frustration continues when said hand built page needs to be reworked again to fit Smarty Templates/Wordpress/generic CMS.

I acknowledge that designers need to be free of systems to be able to do whatever, but most conventional sites have:

  • a header with navigation
  • a sidebar with more links
  • the main content part
  • maybe another sidebar
  • a footer

Given the similarity of a lot of components, shouldn't there be a more systematic approach to going from sliced designs to functional HTML?

Or am I over-simplifying things?

-edit- Mmmmm.... I suppose I will accept an answer, but they weren't really what I was looking for.

It just seems like designing the DOM is a bit of holy grail ("It's only a model!"), and maybe with all the "groovy" things you can do with HTML and Javascript, it would be mighty hard work, but with a set of constraints (that 960 stuff looks interesting), some well designed reset style sheets and a bit of... fairy dust? we should be able to improve the work flow.

Photoshop's tables by themselves are pretty much useless, I agree, but surely we can take this data, and then select a group of cells and say "right, this is a text div, overflow:auto" or "these cells are an image block, style it with the same height/width as the selected area". Admittedly here at work there are other elephants in the room that need to make their formal introductions to management, but some parts of the design>page workflow seem... uneducated at best.

like image 398
Assembler Avatar asked Jul 07 '09 06:07

Assembler


People also ask

Can we convert PSD to HTML?

PSD to HTML conversion is a quick way to add interactive features to static image files. First, you create the designs in Photoshop, a popular image editing tool. Then, convert them into HTML format. Slicing images from a PSD is not a new thing in the digital arena of today.

How do I convert PSD to HTML using Dreamweaver?

You need to take an empty file in Dreamweaver. To do that, you need to click File > New and select HTML. Next, you need the CSS file, so click File > New and select CSS. You need to save HTML in the main folder and then CSS file in styles sub-folder.


2 Answers

To me, doing it by hand is an advantage. You only have to get it right once, and if you're going specifically for visual appeal, you've likely got a lot of work ahead of you making it cross-browser friendly...

Would love to hear other answers. This is just my take on it as I make more data-driven than visually appealing sites.

like image 132
Alexander Trauzzi Avatar answered Oct 17 '22 12:10

Alexander Trauzzi


Skip Photoshop entirely and just get your designers mocking up straight in the view HTML. Not only will you remove the complicated, awkward-feeling process you're feeling, but you'll get better, more resilient designs, because 100% of it will be based on what's possible in HTML/CSS, not what's possible in Photoshop.

More reading:

like image 9
Rahul Avatar answered Oct 17 '22 13:10

Rahul