Class BMPOutputDevice
- java.lang.Object
-
- com.levigo.jadice.server.ghostscript.OutputDevice
-
- com.levigo.jadice.server.ghostscript.ImageOutputDevice
-
- com.levigo.jadice.server.ghostscript.BMPOutputDevice
-
- All Implemented Interfaces:
Serializable
public class BMPOutputDevice extends ImageOutputDevice
AnOutputDevice
generating BMP images. BMP is a simple uncompressed image format commonly used on MS Windows.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BMPOutputDevice.BMPType
This enum determines the type of BMP that is generated.
-
Constructor Summary
Constructors Constructor Description BMPOutputDevice()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
getGhostscriptOutputDeviceName()
String
getOutputMimeType()
BMPOutputDevice.BMPType
getType()
void
setType(BMPOutputDevice.BMPType type)
Set the type of BMP to generate.-
Methods inherited from class com.levigo.jadice.server.ghostscript.ImageOutputDevice
fillOptions, getGraphicsAlphaBits, getTextAlphaBits, getXResolution, getYResolution, setGraphicsAlphaBits, setResolution, setTextAlphaBits, setXResolution, setYResolution
-
-
-
-
Method Detail
-
getType
public BMPOutputDevice.BMPType getType()
- Returns:
- the type of BMP to generate.
-
setType
public void setType(BMPOutputDevice.BMPType type)
Set the type of BMP to generate.- Parameters:
type
- the targettype of BMP image
-
getGhostscriptOutputDeviceName
protected String getGhostscriptOutputDeviceName()
- Specified by:
getGhostscriptOutputDeviceName
in classOutputDevice
-
getOutputMimeType
public String getOutputMimeType()
- Specified by:
getOutputMimeType
in classOutputDevice
-
-