Package org.apache.poi.hwmf.record
Class HwmfFill.WmfDibStretchBlt
- java.lang.Object
-
- org.apache.poi.hwmf.record.HwmfFill.WmfDibStretchBlt
-
- All Implemented Interfaces:
GenericRecord,HwmfFill.HwmfImageRecord,HwmfRecord
- Direct Known Subclasses:
HwmfFill.WmfDibBitBlt
- Enclosing class:
- HwmfFill
public static class HwmfFill.WmfDibStretchBlt extends Object implements HwmfRecord, HwmfFill.HwmfImageRecord
The META_DIBSTRETCHBLT record specifies the transfer of a block of pixels in device-independent format according to a raster operation, with possible expansion or contraction. The destination of the transfer is the current output region in the playback device context. There are two forms of META_DIBSTRETCHBLT, one which specifies a device-independent bitmap (DIB) as the source, and the other which uses the playback device context as the source. Definitions follow for the fields that are the same in the two forms of META_DIBSTRETCHBLT. The subsections that follow specify the packet structures of the two forms of META_DIBSTRETCHBLT.
-
-
Field Summary
Fields Modifier and Type Field Description protected Rectangle2DdstBoundsthe destination rectangleprotected HwmfTernaryRasterOprasterOperationA 32-bit unsigned integer that defines how the source pixels, the current brush in the playback device context, and the destination pixels are to be combined to form the new image.protected Rectangle2DsrcBoundsthe source rectangleprotected HwmfBitmapDibtargetA variable-sized DeviceIndependentBitmap Object that defines image content.
-
Constructor Summary
Constructors Constructor Description WmfDibStretchBlt()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddraw(HwmfGraphics ctx)Apply the record settings to the graphics contextbyte[]getBMPData()Rectangle2DgetDstBounds()Map<String,Supplier<?>>getGenericProperties()BufferedImagegetImage(Color foreground, Color background, boolean hasAlpha)Provide an image using the fore-/background color, in case of a 1-bit patternHwmfTernaryRasterOpgetRasterOperation()Rectangle2DgetSrcBounds()HwmfBitmapDibgetTarget()HwmfRecordTypegetWmfRecordType()intinit(LittleEndianInputStream leis, long recordSize, int recordFunction)Init record from stream-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericChildren
-
Methods inherited from interface org.apache.poi.hwmf.record.HwmfFill.HwmfImageRecord
getImage
-
Methods inherited from interface org.apache.poi.hwmf.record.HwmfRecord
getGenericRecordType
-
-
-
-
Field Detail
-
rasterOperation
protected HwmfTernaryRasterOp rasterOperation
A 32-bit unsigned integer that defines how the source pixels, the current brush in the playback device context, and the destination pixels are to be combined to form the new image. This code MUST be one of the values in the Ternary Raster Operation Enumeration.
-
srcBounds
protected final Rectangle2D srcBounds
the source rectangle
-
dstBounds
protected final Rectangle2D dstBounds
the destination rectangle
-
target
protected HwmfBitmapDib target
A variable-sized DeviceIndependentBitmap Object that defines image content. This object MUST be specified, even if the raster operation does not require a source.
-
-
Method Detail
-
getWmfRecordType
public HwmfRecordType getWmfRecordType()
- Specified by:
getWmfRecordTypein interfaceHwmfRecord
-
init
public int init(LittleEndianInputStream leis, long recordSize, int recordFunction) throws IOException
Description copied from interface:HwmfRecordInit record from stream- Specified by:
initin interfaceHwmfRecord- Parameters:
leis- the little endian input stream- Returns:
- count of processed bytes
- Throws:
IOException
-
draw
public void draw(HwmfGraphics ctx)
Description copied from interface:HwmfRecordApply the record settings to the graphics context- Specified by:
drawin interfaceHwmfRecord- Parameters:
ctx- the graphics context to modify
-
getImage
public BufferedImage getImage(Color foreground, Color background, boolean hasAlpha)
Description copied from interface:HwmfFill.HwmfImageRecordProvide an image using the fore-/background color, in case of a 1-bit pattern- Specified by:
getImagein interfaceHwmfFill.HwmfImageRecord- Parameters:
foreground- the foreground colorbackground- the background colorhasAlpha- if true, the background color is rendered transparent - seeHwmfMisc.WmfSetBkMode.HwmfBkMode- Returns:
- the image
-
getBMPData
public byte[] getBMPData()
- Specified by:
getBMPDatain interfaceHwmfFill.HwmfImageRecord- Returns:
- the raw BMP data
- See Also:
- BMP format
-
getRasterOperation
public HwmfTernaryRasterOp getRasterOperation()
-
getSrcBounds
public Rectangle2D getSrcBounds()
-
getDstBounds
public Rectangle2D getDstBounds()
-
getTarget
public HwmfBitmapDib getTarget()
-
getGenericProperties
public Map<String,Supplier<?>> getGenericProperties()
- Specified by:
getGenericPropertiesin interfaceGenericRecord
-
-