Agnel Kurian
Agnel Kurian

Reputation: 59476

Direct3D Output on a Printer/Plotter

What is the best way to send Direct3D output to a printer or a plotter?

Upvotes: 2

Views: 793

Answers (3)

faulty
faulty

Reputation: 8347

I would like to say that sending screenshot or image is only suitable for printers (raster graphic). If you want to draw on the plotter, you'll need use the special instruction for the particular model of plotter you intended to draw on. Plotters are restricted to draw only line art as oppose to raster graphics. Take a look at this wikipedia article

Upvotes: 1

Walt D
Walt D

Reputation: 4731

I would do it by creating a BMP file from the front buffer and then printing that BMP:

http://www.mvps.org/directx/articles/screengrab.htm

Upvotes: 3

Max
Max

Reputation: 7119

I would just take a screenshot of the entire 3d scene, and then print it out.

Upvotes: 0

Related Questions