I always forget the package name to include, so here it is
\usepackage[pdftex]{graphicx}
Once included, the package provides the following term
\includegraphics[key_1 = . . . , key_2 = . . . , key_n=....]{filename}
Options (keys) include:
• scale = number — a magnification factor
• width = length — the width to which the figure should be scaled
• height = length — the height to which the figure should be scaled2
• totalheight = length — height plus depth of figure (to be used if figure is rotated)
• keepaspectratio = true/false — maintains the height/width ratio
• angle = number — angle (in degrees) by which the figure is to be rotated counter clockwise
• origin = location3 — the point about which rotation is to occur
• draft = true/false — prevents figure from being imported, but created a named box with the dimensions of the figure (this option is used to speed up processing)
• clip = true/false — excludes whatever is outside the bounding box
• bb = llx lly urx ury — enters the bounding box coordinates, which are given by default in points (1/72 inch), manually (the bounding box might be missing or you might want to alter it)
• viewport = llx lly urx ury — specifies bounding box w.r.t. bottom left of existing bounding box; used with clip to select a part of the image (or to clear unwanted margins).
• trim = dllx dlly durx dury — reduces the bounding box by the amount specified
• hiresbb = true/false — reads the bounding box information from the line %%HiResBoundingBox in figure file
Detailed spec is here or a quickie can be found here