org.freehep.graphicsio.emf.gdi.StrokePath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-graphicsio-emf Show documentation
Show all versions of freehep-graphicsio-emf Show documentation
FreeHEP Enhanced Metafile Format Driver
The newest version!
// Copyright 2002, FreeHEP.
package org.freehep.graphicsio.emf.gdi;
import java.awt.Rectangle;
import java.awt.geom.GeneralPath;
import java.io.IOException;
import org.freehep.graphicsio.emf.EMFInputStream;
import org.freehep.graphicsio.emf.EMFOutputStream;
import org.freehep.graphicsio.emf.EMFTag;
import org.freehep.graphicsio.emf.EMFRenderer;
/**
* StrokePath TAG.
*
* @author Mark Donszelmann
* @version $Id: freehep-graphicsio-emf/src/main/java/org/freehep/graphicsio/emf/gdi/StrokePath.java c0f15e7696d3 2007/01/22 19:26:48 duns $
*/
public class StrokePath extends EMFTag {
private Rectangle bounds;
public StrokePath() {
super(64, 1);
}
public StrokePath(Rectangle bounds) {
this();
this.bounds = bounds;
}
public EMFTag read(int tagID, EMFInputStream emf, int len)
throws IOException {
return new StrokePath(emf.readRECTL());
}
public void write(int tagID, EMFOutputStream emf) throws IOException {
emf.writeRECTL(bounds);
}
public String toString() {
return super.toString() + "\n bounds: " + bounds;
}
/**
* displays the tag using the renderer
*
* @param renderer EMFRenderer storing the drawing session data
*/
public void render(EMFRenderer renderer) {
GeneralPath currentPath = renderer.getPath();
// fills the current path
if (currentPath != null) {
renderer.drawShape(currentPath);
renderer.setPath(null);
}
}
}