return dataBlockStartOfsset;
}
- /**
- * @return picture's content as byte array
- */
- public byte[] getContent()
- {
- if (content == null || content.length<=0)
+ /**
+ * @return picture's content as byte array
+ */
+ public byte[] getContent()
{
- fillImageContent();
+ fillImageContent();
+ return content;
}
- return content;
- }
- public byte[] getRawContent()
- {
- if (rawContent == null || rawContent.length <= 0)
+ /**
+ * Returns picture's content as it stored in Word file, i.e. possibly in
+ * compressed form.
+ *
+ * @return picture's content as it stored in Word file
+ */
+ public byte[] getRawContent()
{
- fillRawImageContent();
+ fillRawImageContent();
+ return rawContent;
}
- return rawContent;
- }
/**
*
public PictureType suggestPictureType()
{
- fillImageContent();
-
+ final byte[] imageContent = getContent();
for ( PictureType pictureType : PictureType.values() )
for ( byte[] signature : pictureType.getSignatures() )
- if ( matchSignature( _dataStream, signature,
- pictureBytesStartOffset ) )
+ if ( matchSignature( imageContent, signature, 0 ) )
return pictureType;
// TODO: DIB, PICT
private void fillRawImageContent()
{
+ if ( rawContent != null && rawContent.length > 0 )
+ return;
+
this.rawContent = new byte[size];
System.arraycopy(_dataStream, pictureBytesStartOffset, rawContent, 0, size);
}
private void fillImageContent()
{
+ if ( content != null && content.length > 0 )
+ return;
+
byte[] rawContent = getRawContent();
// HACK: Detect compressed images. In reality there should be some way to determine
assertEquals("10a8", picture.suggestFullFileName());
assertEquals("image/unknown", picture.getMimeType());
}
-
+
+ public void testEquation()
+ {
+ HWPFDocument doc = HWPFTestDataSamples.openSampleFile( "equation.doc" );
+ PicturesTable pictures = doc.getPicturesTable();
+
+ final List<Picture> allPictures = pictures.getAllPictures();
+ assertEquals( 1, allPictures.size() );
+
+ Picture picture = allPictures.get( 0 );
+ assertNotNull( picture );
+ assertEquals( PictureType.EMF, picture.suggestPictureType() );
+ assertEquals( PictureType.EMF.getExtension(),
+ picture.suggestFileExtension() );
+ assertEquals( PictureType.EMF.getMime(), picture.getMimeType() );
+ assertEquals( "0.emf", picture.suggestFullFileName() );
+ }
+
/**
* In word you can have floating or fixed pictures.
* Fixed have a \u0001 in place with an offset to the