Link to home
Start Free TrialLog in
Avatar of matelin
matelin

asked on

photoshope/imageready

I created my page design in photoshop than exported to imageready, sliced and saved to my html editor images and all, copied the code from image ready but my page in the html editor is way tooo big in download times. Also when I do another page in design>imageready.slice and save as html the edit in html adds too many of the same duplicate images, what am I doing wrong??? any step by step to save image ready files to my html editor for my web site? tutorials? thank you.
Avatar of weed
weed
Flag of United States of America image

Ok, first off, there is no need to copy and paste from ImageReady and paste it into your HTML editor. Just open the HTML file ImageReady generates with your HTML editor.

As for being too big, when you Save For Web from ImageReady, select each slice, and assign the compression settings on the right side. You can save as PNG, GIF or JPG. Choose an appropriate file format for your images. For GIF try reducing the colors, and for JPEG slices just crank the compression slider down.
Avatar of matelin
matelin

ASKER

thank you first of all for your fast response. I did what you said, except to compress each slice. the download time was 2:02 on download, way too big. so I need to compress each slice ???I kind of understand when to save as a JPEG and a Gif but what if my slice includes both picture file formats?
Thanks, Maddy.
Avatar of matelin

ASKER

and also do I use uncompensated color or standard windows color? Thanks Maddy
Avatar of matelin

ASKER

progressive or no progressive should be checked??
Thanks again, Maddy
ASKER CERTIFIED SOLUTION
Avatar of weed
weed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
are there any plain color slices in your image?  i'm assuming you've done a complete web layout, including blank areas for text and what not.  any "blank" (no object detail, just plain single color) slices in your layout?  if so, when it comes time to edit the html, note the dimensions of that particular slice (width & height), delete the img src reference to it and make the background color for that cell the same as the slice was.  even flat color slices eat some bandwidth and it all makes a difference.  when you preview it, you may notice that as a result of omitting that image your table has collapsed.  if you hadn't already, hit the code again and set the cell's width & height to that of the omitted image.  you should do this whenever possible.  it'll save your quite a bit on bandwidth.

another suggestion: you might also try preloading the images in the <body> tag, so at least when it does appear, it'll appear as you meant it to be viewed instead of piece by piece.

i've also found that by clicking 'save optimized as...' in the imageready file menu, it seems to pick the optimal image settings for you for faster load times.
did any of these answer your question or were at least a little helpful?