Package org.apache.poi.hslf.blip
Class EMF
- java.lang.Object
-
- org.apache.poi.hslf.usermodel.HSLFPictureData
-
- org.apache.poi.hslf.blip.Metafile
-
- org.apache.poi.hslf.blip.EMF
-
- All Implemented Interfaces:
GenericRecord,PictureData
public final class EMF extends Metafile
Represents EMF (Windows Enhanced Metafile) picture data.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.poi.hslf.blip.Metafile
Metafile.Header
-
Nested classes/interfaces inherited from interface org.apache.poi.sl.usermodel.PictureData
PictureData.PictureType
-
-
Field Summary
-
Fields inherited from class org.apache.poi.hslf.usermodel.HSLFPictureData
CHECKSUM_SIZE
-
-
Constructor Summary
Constructors Constructor Description EMF()Deprecated.UseHSLFSlideShow.addPicture(byte[], org.apache.poi.sl.usermodel.PictureData.PictureType)or one of its overloads to create new EMF.EMF(EscherContainerRecord recordContainer, EscherBSERecord bse)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected byte[]formatImageForSlideshow(byte[] data)Formats the picture data for storage in the slideshow.byte[]getData()intgetSignature()EMF signature is0x3D40or0x3D50PictureData.PictureTypegetType()voidsetSignature(int signature)Sets the EMF signature - either0x3D40or0x3D50-
Methods inherited from class org.apache.poi.hslf.blip.Metafile
compress, getImageDimension
-
Methods inherited from class org.apache.poi.hslf.usermodel.HSLFPictureData
create, getChecksum, getChecksum, getContentType, getGenericProperties, getHeader, getImageDimensionInPixels, getIndex, getOffset, getRawData, getUID, getUIDInstanceCount, setData, setIndex, setOffset, setRawData, setUIDInstanceCount, write
-
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, getGenericRecordType
-
-
-
-
Constructor Detail
-
EMF
@Deprecated @Removal(version="5.3") public EMF()
Deprecated.UseHSLFSlideShow.addPicture(byte[], org.apache.poi.sl.usermodel.PictureData.PictureType)or one of its overloads to create new EMF. This API led to detached EMF instances (See Bugzilla 46122) and prevented adding additional functionality.
-
EMF
@Internal public EMF(EscherContainerRecord recordContainer, EscherBSERecord bse)
Creates a new instance.- Parameters:
recordContainer- Record tracking all pictures. Should be attached to the slideshow that this picture is linked to.bse- Record referencing this picture. Should be attached to the slideshow that this picture is linked to.
-
-
Method Detail
-
getData
public byte[] getData()
-
formatImageForSlideshow
protected byte[] formatImageForSlideshow(byte[] data)
Description copied from class:HSLFPictureDataFormats the picture data for storage in the slideshow.Images stored in
HSLFSlideShows are represented differently than when they are standalone files. The exact formatting differs for each image type.- Specified by:
formatImageForSlideshowin classHSLFPictureData- Parameters:
data- Original image data. If these bytes were written to a disk, a common image viewer would be able to render the image.- Returns:
- Formatted image representation.
-
getType
public PictureData.PictureType getType()
-
getSignature
public int getSignature()
EMF signature is0x3D40or0x3D50- Specified by:
getSignaturein classHSLFPictureData- Returns:
- EMF signature (
0x3D40or0x3D50)
-
setSignature
public void setSignature(int signature)
Sets the EMF signature - either0x3D40or0x3D50- Specified by:
setSignaturein classHSLFPictureData
-
-