1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-16 23:22:24 +00:00
plantuml/src/net/sourceforge/plantuml/eggs/GraphicsPath.java

85 lines
2.7 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +00:00
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2010-11-15 20:35:36 +00:00
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.eggs;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import net.sourceforge.plantuml.EmptyImageBuilder;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.api.ImageDataSimple;
import net.sourceforge.plantuml.core.ImageData;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.png.PngIO;
2020-04-19 16:04:39 +00:00
import net.sourceforge.plantuml.ugraphic.UChange;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.ugraphic.UMotif;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.ColorMapper;
import net.sourceforge.plantuml.ugraphic.color.HColorUtils;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.ugraphic.g2d.UGraphicG2d;
public class GraphicsPath {
private final String path;
2011-08-08 17:48:29 +00:00
private final ColorMapper colorMapper;
2010-11-15 20:35:36 +00:00
2011-08-08 17:48:29 +00:00
public GraphicsPath(ColorMapper colorMapper, String path) {
2010-11-15 20:35:36 +00:00
this.path = path;
2011-08-08 17:48:29 +00:00
this.colorMapper = colorMapper;
2010-11-15 20:35:36 +00:00
}
2013-12-10 19:36:50 +00:00
public ImageData writeImage(OutputStream os) throws IOException {
2010-11-15 20:35:36 +00:00
final BufferedImage im = createImage();
2011-01-05 18:23:06 +00:00
PngIO.write(im, os, 96);
2013-12-10 19:36:50 +00:00
return new ImageDataSimple(im.getWidth(), im.getHeight());
2010-11-15 20:35:36 +00:00
}
private BufferedImage createImage() {
2020-04-26 18:31:41 +00:00
final EmptyImageBuilder builder = new EmptyImageBuilder(null, 50, 50, Color.WHITE);
2010-11-15 20:35:36 +00:00
final BufferedImage im = builder.getBufferedImage();
final Graphics2D g2d = builder.getGraphics2D();
2013-12-10 19:36:50 +00:00
final UGraphicG2d ug = new UGraphicG2d(colorMapper, g2d, 1.0);
ug.setBufferedImage(im);
2010-11-15 20:35:36 +00:00
final UMotif motif = new UMotif(path);
2020-04-19 16:04:39 +00:00
motif.drawHorizontal(ug.apply((UChange) HColorUtils.BLACK), 20, 20, 1);
2010-11-15 20:35:36 +00:00
g2d.dispose();
return im;
}
}