Step 10
Images can be embedded in the web page via the CSS code. This is more complex but can offer great advantages. For example, the image can be changed from a horizontal image to a verticle image to fit the screen based on media screen code. The CSS instructs the image to change based on the size of the screen.
Image File Types
There are five different file types you can save an image as to use in a website. Having an understanding of those file types and their pros and cons will help you determine what type to save your images as depending on their purpose in the site.
Steps for Implementing an Image
- Determine the dimensions of when the image will be at its largest.
- Open Photoshop and create a new canvas at that size.
- Open image file and paste into new canvas.
- Press "Command" + "T" to Free Transform the image. Scale it to fit the canvas.
- Save the file using the appropriate file type (see above). Save it into your images folder in your Main Site Root Folder. Name it carefully so you know where the image is going on your site. This helps with file organization.
- Open Dreamweaver. Insert the image into your html code or into your CSS rule.
- Set the width to 100% (or whatever percentage you feel is aesthetically pleasing), and set the height of the image to "auto". This ensures your image will scale proportionally and not looked stretched on any media screen.
Steps for Getting an Image Ready for Web Use
There are certain steps you must follow in order to prepare an image for web use. You will do these steps prior to doing the steps for implementing an image.
- Open the file in Photoshop.
- Determine the largest size.
- Open a new canvas. Set ppi to 72 and size the canvas to the largest size
- Size the photo correctly in photoshop then save for web again.
- Set the quality to high or maximum depending on the size.
- Check the reference to loading speed on the slowest modem (dial up) at the bottom left corner.
Always remember to save your raw files (unchanged and unedited) in a separate folder inside your Main Site Root Folder. Possibly title that folder "raw images" versus your "images" folder that the edited and implemented image files are saved in.
To place an image in your page do the following:
- Find your place in the CODE you want your image
- Use the dragdown menu Insert < Image
- Dreamweaver will write the code and display the image but it will need to be updated. The code will read…
<img src="images/_skier-700x380.jpg" width="700" height="380" alt=""/>
That would make the image static. - Change the width and height via inline CSS style code…
<img src="images/_skier-700x380.jpg" style="max-width:100%;height:auto;" alt="Photograph of skier on snowy slopes"/>
Also changed was the alt text. This is the code that screen readers use to state the names of images for those who have a hard time seeing. This is becoming every more important. Don't forget to update the alt text.