1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-02 08:30:49 +00:00
plantuml/src/net/sourceforge/plantuml/creole/AtomImg.java

158 lines
4.9 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2016-01-09 12:15:40 +00:00
* (C) Copyright 2009-2017, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2013-12-10 19:36:50 +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
*
2013-12-10 19:36:50 +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
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* 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.creole;
import java.awt.Font;
import java.awt.geom.Dimension2D;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import javax.imageio.ImageIO;
import net.sourceforge.plantuml.Dimension2DDouble;
import net.sourceforge.plantuml.FileSystem;
2015-09-28 20:42:17 +00:00
import net.sourceforge.plantuml.code.Base64Coder;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.ImgValign;
import net.sourceforge.plantuml.graphic.StringBounder;
2016-08-25 20:45:37 +00:00
import net.sourceforge.plantuml.graphic.TileImageSvg;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UFont;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UImage;
public class AtomImg implements Atom {
2015-09-28 20:42:17 +00:00
private static final String DATA_IMAGE_PNG_BASE64 = "data:image/png;base64,";
2013-12-10 19:36:50 +00:00
private final BufferedImage image;
2016-04-04 19:05:10 +00:00
private final double scale;
2013-12-10 19:36:50 +00:00
2016-04-04 19:05:10 +00:00
private AtomImg(BufferedImage image, double scale) {
2013-12-10 19:36:50 +00:00
this.image = image;
2016-04-04 19:05:10 +00:00
this.scale = scale;
2013-12-10 19:36:50 +00:00
}
2016-04-04 19:05:10 +00:00
public static Atom create(String src, final ImgValign valign, final int vspace, final double scale) {
2017-04-05 17:37:42 +00:00
final UFont font = UFont.monospaced(14);
2015-09-28 20:42:17 +00:00
final FontConfiguration fc = FontConfiguration.blackBlueTrue(font);
if (src.startsWith(DATA_IMAGE_PNG_BASE64)) {
final String data = src.substring(DATA_IMAGE_PNG_BASE64.length(), src.length());
try {
final byte bytes[] = Base64Coder.decode(data);
2016-04-04 19:05:10 +00:00
return build(src, fc, bytes, scale);
2015-09-28 20:42:17 +00:00
} catch (Exception e) {
return AtomText.create("ERROR " + e.toString(), fc);
}
}
2013-12-10 19:36:50 +00:00
try {
final File f = FileSystem.getInstance().getFile(src);
if (f.exists() == false) {
// Check if valid URL
if (src.startsWith("http:") || src.startsWith("https:")) {
final byte image[] = getFile(src);
2016-04-04 19:05:10 +00:00
return build(src, fc, image, scale);
2013-12-10 19:36:50 +00:00
}
return AtomText.create("(File not found: " + f + ")", fc);
}
if (f.getName().endsWith(".svg")) {
2016-08-25 20:45:37 +00:00
return new AtomImgSvg(new TileImageSvg(f));
2013-12-10 19:36:50 +00:00
}
final BufferedImage read = ImageIO.read(f);
if (read == null) {
return AtomText.create("(Cannot decode: " + f + ")", fc);
}
2016-04-04 19:05:10 +00:00
return new AtomImg(ImageIO.read(f), scale);
2013-12-10 19:36:50 +00:00
} catch (IOException e) {
return AtomText.create("ERROR " + e.toString(), fc);
}
}
2016-04-04 19:05:10 +00:00
private static Atom build(String source, final FontConfiguration fc, final byte[] data, double scale)
throws IOException {
2015-09-28 20:42:17 +00:00
final BufferedImage read = ImageIO.read(new ByteArrayInputStream(data));
if (read == null) {
return AtomText.create("(Cannot decode: " + source + ")", fc);
}
2016-04-04 19:05:10 +00:00
return new AtomImg(read, scale);
2015-09-28 20:42:17 +00:00
}
2013-12-10 19:36:50 +00:00
// Added by Alain Corbiere
static byte[] getFile(String host) throws IOException {
final ByteArrayOutputStream image = new ByteArrayOutputStream();
InputStream input = null;
try {
final URL url = new URL(host);
final URLConnection connection = url.openConnection();
input = connection.getInputStream();
final byte[] buffer = new byte[1024];
int read;
while ((read = input.read(buffer)) > 0) {
image.write(buffer, 0, read);
}
image.close();
return image.toByteArray();
} finally {
if (input != null) {
input.close();
}
}
}
// End
public Dimension2D calculateDimension(StringBounder stringBounder) {
2016-04-04 19:05:10 +00:00
return new Dimension2DDouble(image.getWidth() * scale, image.getHeight() * scale);
2013-12-10 19:36:50 +00:00
}
public double getStartingAltitude(StringBounder stringBounder) {
return 0;
}
public void drawU(UGraphic ug) {
// final double h = calculateDimension(ug.getStringBounder()).getHeight();
2016-04-04 19:05:10 +00:00
ug.draw(new UImage(image, scale));
2013-12-10 19:36:50 +00:00
// tileImage.drawU(ug.apply(new UTranslate(0, -h)));
}
}