Rotating an image and printing it on a landscape page in your report is doable but not easy. Here is a recipe:
- Save the image as a jpg image.
- Rotate the image 90 degrees using the imrotate function--requires the MATLAB Image Processing Toolbox or your own rotate function (see image rotation examples)
- Save the rotated image.
- Wrap the rotated image in a DOM Image object.
- Save your report's current page layout.
- Append a landscape page layout to your report.
- Append the rotated image object to your report.
- Clone your original page layout.
- Append the cloned page layout to restore your report's original page layout.