* @param arguments List
* @throws IOException If there is an error invoking the sub object.
*/
public void process(PDFOperator operator, List<COSBase> arguments) throws IOException
{
PageDrawer drawer = (PageDrawer)context;
PDPage page = drawer.getPage();
COSName objectName = (COSName)arguments.get( 0 );
Map<String, PDXObject> xobjects = drawer.getResources().getXObjects();
PDXObject xobject = (PDXObject)xobjects.get( objectName.getName() );
if ( xobject == null )
{
LOG.warn("Can't find the XObject for '"+objectName.getName()+"'");
}
else if( xobject instanceof PDXObjectImage )
{
PDXObjectImage image = (PDXObjectImage)xobject;
try
{
if (image.getImageMask())
{
// set the current non stroking colorstate, so that it can
// be used to create a stencil masked image
image.setStencilColor(drawer.getGraphicsState().getNonStrokingColor());
}
BufferedImage awtImage = image.getRGBImage();
if (awtImage == null)
{
LOG.warn("getRGBImage returned NULL");
return;//TODO PKOCH
}
int imageWidth = awtImage.getWidth();
int imageHeight = awtImage.getHeight();
double pageHeight = drawer.getPageSize().getHeight();
LOG.debug("imageWidth: " + imageWidth + "\t\timageHeight: " + imageHeight);
Matrix ctm = drawer.getGraphicsState().getCurrentTransformationMatrix();
float yScaling = ctm.getYScale();
float angle = (float)Math.acos(ctm.getValue(0, 0)/ctm.getXScale());
if (ctm.getValue(0, 1) < 0 && ctm.getValue(1, 0) > 0)
{
angle = (-1)*angle;
}
ctm.setValue(2, 1, (float)(pageHeight - ctm.getYPosition() - Math.cos(angle)*yScaling));
ctm.setValue(2, 0, (float)(ctm.getXPosition() - Math.sin(angle)*yScaling));
// because of the moved 0,0-reference, we have to shear in the opposite direction
ctm.setValue(0, 1, (-1)*ctm.getValue(0, 1));
ctm.setValue(1, 0, (-1)*ctm.getValue(1, 0));
AffineTransform ctmAT = ctm.createAffineTransform();
ctmAT.scale(1f/imageWidth, 1f/imageHeight);
drawer.drawImage( awtImage, ctmAT );
}
catch( Exception e )
{
LOG.error(e, e);
}
}
else if(xobject instanceof PDXObjectForm)
{
// save the graphics state
context.getGraphicsStack().push( (PDGraphicsState)context.getGraphicsState().clone() );
PDXObjectForm form = (PDXObjectForm)xobject;
COSStream formContentstream = form.getCOSStream();
// find some optional resources, instead of using the current resources
PDResources pdResources = form.getResources();
// if there is an optional form matrix, we have to map the form space to the user space
Matrix matrix = form.getMatrix();
if (matrix != null)
{
Matrix xobjectCTM = matrix.multiply( context.getGraphicsState().getCurrentTransformationMatrix());
context.getGraphicsState().setCurrentTransformationMatrix(xobjectCTM);
}
if (form.getBBox() != null)
{
PDGraphicsState graphicsState = context.getGraphicsState();
PDRectangle bBox = form.getBBox();
float x1 = bBox.getLowerLeftX();
float y1 = bBox.getLowerLeftY();
float x2 = bBox.getUpperRightX();
float y2 = bBox.getUpperRightY();
Point2D p0 = drawer.transformedPoint(x1, y1);
Point2D p1 = drawer.transformedPoint(x2, y1);
Point2D p2 = drawer.transformedPoint(x2, y2);
Point2D p3 = drawer.transformedPoint(x1, y2);
GeneralPath bboxPath = new GeneralPath();
bboxPath.moveTo((float) p0.getX(), (float) p0.getY());
bboxPath.lineTo((float) p1.getX(), (float) p1.getY());
bboxPath.lineTo((float) p2.getX(), (float) p2.getY());