Skip to content
Snippets Groups Projects
Commit 36748c96 authored by Georg Graßnick's avatar Georg Graßnick :thinking:
Browse files

Use raster constraints

parent 49b975a8
No related branches found
No related tags found
1 merge request!17Feat/bool mat svg 15
......@@ -118,6 +118,14 @@ public abstract class AbstractCanvas<T extends PrintableData> {
return mPrintableArea.getHeight();
}
public final double getPageWidth() {
return mFormat.getProperty("page.width").toDouble();
}
public final double getPageHeight() {
return mFormat.getProperty("page.height").toDouble();
}
/**
* Get the number of pages in the canvas.
* @return The number of pages.
......
......@@ -256,6 +256,14 @@ public class RasterCanvas extends AbstractCanvas<MatrixData<Boolean>> {
return dotY / mCellHeight;
}
public final int getRasterConstraintLeft() {
return mPrinter.getProperty("raster.constraint.left").toInt();
}
public final int getRasterConstraintTop() {
return mPrinter.getProperty("raster.constraint.top").toInt();
}
public final List<Double> getXPositions() {
return Collections.unmodifiableList(mXPositions);
}
......
......@@ -40,7 +40,7 @@ abstract class AbstractSvgExporter<T extends AbstractCanvas, U extends Printable
ListIterator it = (mCanvas.getPageIterator());
int idx = 0;
while (it.hasNext()) {
mSvgs.add(new SVGGraphics2D(((int) Math.ceil(mCanvas.getPrintableWidth())), ((int) Math.ceil(mCanvas.getPrintableHeight())), SVGUnits.MM));
mSvgs.add(new SVGGraphics2D(((int) Math.ceil(mCanvas.getPageWidth())), ((int) Math.ceil(mCanvas.getPageHeight())), SVGUnits.MM));
renderPage((((U) it.next())), idx++);
}
}
......@@ -48,7 +48,7 @@ abstract class AbstractSvgExporter<T extends AbstractCanvas, U extends Printable
@Override
public void dump(final OutputStream os, final int dataIndex) throws IOException {
Objects.requireNonNull(os);
final String doc = mSvgs.get(dataIndex).getSVGElement(null, true, new ViewBox(0, 0, (int) Math.ceil(mCanvas.getPrintableWidth()), (int) Math.ceil(mCanvas.getPrintableHeight())), null, null);
final String doc = mSvgs.get(dataIndex).getSVGElement(null, true, new ViewBox(0, 0, (int) Math.ceil(mCanvas.getPageWidth()), (int) Math.ceil(mCanvas.getPageHeight())), null, null);
mLogger.trace("Start dumping file to stream ...");
os.write(doc.getBytes());
mLogger.trace("Finished dumping file to stream");
......
......@@ -31,8 +31,8 @@ public class BoolMatrixDataSvgExporter extends AbstractSvgExporter<RasterCanvas,
for (int y = 0; y < mat.getRowCount(); y++) {
for (int x = 0; x < mat.getColumnCount(); x++) {
if (mat.getValue(y, x)) {
int xPos = (int) (double) Math.round(xPositions.get(x));
int yPos = (int) (double) Math.round(yPositions.get(y));
int xPos = (int) (double) Math.round(xPositions.get(x)) + mCanvas.getRasterConstraintLeft();
int yPos = (int) (double) Math.round(yPositions.get(y)) + mCanvas.getRasterConstraintTop();
svg.drawOval(xPos, yPos, dotDiameter, dotDiameter);
mLogger.trace("Drew dot at position ({},{})", xPos, yPos);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment