/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.hwmf.draw; import java.awt.AlphaComposite; import java.awt.BasicStroke; import java.awt.Color; import java.awt.Composite; import java.awt.Font; import java.awt.Graphics2D; import java.awt.GraphicsConfiguration; import java.awt.Insets; import java.awt.Paint; import java.awt.Rectangle; import java.awt.Shape; import java.awt.TexturePaint; import java.awt.font.FontRenderContext; import java.awt.font.GlyphVector; import java.awt.font.LineBreakMeasurer; import java.awt.font.TextAttribute; import java.awt.font.TextLayout; import java.awt.geom.AffineTransform; import java.awt.geom.Dimension2D; import java.awt.geom.NoninvertibleTransformException; import java.awt.geom.Point2D; import java.awt.geom.Rectangle2D; import java.awt.image.BufferedImage; import java.awt.image.DataBuffer; import java.awt.image.IndexColorModel; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; import java.text.AttributedString; import java.util.ArrayList; import java.util.BitSet; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.NoSuchElementException; import java.util.Objects; import java.util.TreeMap; import java.util.function.BiConsumer; import java.util.function.Supplier; import org.apache.poi.common.usermodel.fonts.FontCharset; import org.apache.poi.common.usermodel.fonts.FontInfo; import org.apache.poi.hwmf.record.HwmfBrushStyle; import org.apache.poi.hwmf.record.HwmfFont; import org.apache.poi.hwmf.record.HwmfMapMode; import org.apache.poi.hwmf.record.HwmfMisc.WmfSetBkMode.HwmfBkMode; import org.apache.poi.hwmf.record.HwmfObjectTableEntry; import org.apache.poi.hwmf.record.HwmfPenStyle; import org.apache.poi.hwmf.record.HwmfPenStyle.HwmfLineDash; import org.apache.poi.hwmf.record.HwmfRegionMode; import org.apache.poi.hwmf.record.HwmfText.WmfExtTextOutOptions; import org.apache.poi.hwmf.usermodel.HwmfCharsetAware; import org.apache.poi.sl.draw.BitmapImageRenderer; import org.apache.poi.sl.draw.DrawFactory; import org.apache.poi.sl.draw.DrawFontManager; import org.apache.poi.sl.draw.DrawPictureShape; import org.apache.poi.sl.draw.ImageRenderer; import org.apache.poi.util.Internal; import org.apache.poi.util.LocaleUtil; public class HwmfGraphics implements HwmfCharsetAware { public enum FillDrawStyle { NONE(FillDrawStyle::fillNone), FILL(HwmfGraphics::fill), DRAW(HwmfGraphics::draw), FILL_DRAW(FillDrawStyle::fillDraw); public final BiConsumer handler; FillDrawStyle(BiConsumer handler) { this.handler = handler; } private static void fillNone(HwmfGraphics g, Shape s) { } private static void fillDraw(HwmfGraphics g, Shape s) { g.fill(s); g.draw(s); } } private static final Float[] WEIGHT_MAP = { 900f, TextAttribute.WEIGHT_ULTRABOLD, 800f, TextAttribute.WEIGHT_EXTRABOLD, 750f, TextAttribute.WEIGHT_HEAVY, 700f, TextAttribute.WEIGHT_BOLD, 600f, TextAttribute.WEIGHT_DEMIBOLD, 500f, TextAttribute.WEIGHT_MEDIUM, 450f, TextAttribute.WEIGHT_SEMIBOLD, 400f, TextAttribute.WEIGHT_REGULAR, 300f, TextAttribute.WEIGHT_DEMILIGHT, 200f, TextAttribute.WEIGHT_LIGHT, 1f, TextAttribute.WEIGHT_EXTRA_LIGHT }; private static class DxLayout { double dx; // Spacing at default tracking value of 0 double pos0; // Spacing at second tracking value double pos1; int beginIndex; int endIndex; } private final List propStack = new LinkedList<>(); protected HwmfDrawProperties prop; protected final Graphics2D graphicsCtx; protected final BitSet objectIndexes = new BitSet(); protected final TreeMap objectTable = new TreeMap<>(); private final AffineTransform initialAT = new AffineTransform(); /** Bounding box from the placeable header */ private final Rectangle2D bbox; private Supplier charsetProvider = () -> LocaleUtil.CHARSET_1252; /** * Initialize a graphics context for wmf rendering * * @param graphicsCtx the graphics context to delegate drawing calls * @param bbox the bounding box of the wmf (taken from the placeable header) */ public HwmfGraphics(Graphics2D graphicsCtx, Rectangle2D bbox) { this.graphicsCtx = graphicsCtx; this.bbox = (Rectangle2D)bbox.clone(); this.initialAT.setTransform(graphicsCtx.getTransform()); } public HwmfDrawProperties getProperties() { if (prop == null) { prop = newProperties(null); } return prop; } protected HwmfDrawProperties newProperties(HwmfDrawProperties oldProps) { return (oldProps == null) ? new HwmfDrawProperties() : new HwmfDrawProperties(oldProps); } public void draw(Shape shape) { HwmfPenStyle ps = getProperties().getPenStyle(); if (ps == null) { return; } HwmfLineDash lineDash = ps.getLineDash(); if (lineDash == HwmfLineDash.NULL) { // line is not drawn return; } BasicStroke stroke = getStroke(); // first draw a solid background line (depending on bkmode) // only makes sense if the line is not solid if (getProperties().getBkMode() == HwmfBkMode.OPAQUE && (lineDash != HwmfLineDash.SOLID && lineDash != HwmfLineDash.INSIDEFRAME)) { graphicsCtx.setStroke(new BasicStroke(stroke.getLineWidth())); graphicsCtx.setColor(getProperties().getBackgroundColor().getColor()); graphicsCtx.draw(shape); } // then draw the (dashed) line graphicsCtx.setStroke(stroke); graphicsCtx.setColor(getProperties().getPenColor().getColor()); graphicsCtx.draw(shape); } public void fill(Shape shape) { HwmfDrawProperties prop = getProperties(); if (prop.getBrushStyle() != HwmfBrushStyle.BS_NULL) { Composite old = graphicsCtx.getComposite(); graphicsCtx.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER)); // if (prop.getBkMode() == HwmfBkMode.OPAQUE) { // graphicsCtx.setPaint(prop.getBackgroundColor().getColor()); // graphicsCtx.fill(shape); // } graphicsCtx.setPaint(getFill()); graphicsCtx.fill(shape); graphicsCtx.setComposite(old); } draw(shape); } @SuppressWarnings("MagicConstant") protected BasicStroke getStroke() { HwmfDrawProperties prop = getProperties(); HwmfPenStyle ps = prop.getPenStyle(); // TODO: fix line width calculation float width = (float)prop.getPenWidth(); if (width == 0) { width = 1; } int cap = ps.getLineCap().awtFlag; int join = ps.getLineJoin().awtFlag; float miterLimit = (float)prop.getPenMiterLimit(); float[] dashes = ps.getLineDashes(); boolean dashAlt = ps.isAlternateDash(); // This value is not an integer index into the dash pattern array. // Instead, it is a floating-point value that specifies a linear distance. float dashStart = (dashAlt && dashes != null && dashes.length > 1) ? dashes[0] : 0; return new BasicStroke(width, cap, join, Math.max(1,miterLimit), dashes, dashStart); } protected Paint getFill() { switch (getProperties().getBrushStyle()) { default: case BS_INDEXED: case BS_PATTERN8X8: case BS_DIBPATTERN8X8: case BS_MONOPATTERN: case BS_NULL: return null; case BS_PATTERN: case BS_DIBPATTERN: case BS_DIBPATTERNPT: return getPatternPaint(); case BS_SOLID: return getSolidFill(); case BS_HATCHED: return getHatchedFill(); case BS_LINEAR_GRADIENT: return getLinearGradient(); } } protected Paint getLinearGradient() { return null; } protected Paint getSolidFill() { return getProperties().getBrushColor().getColor(); } protected Paint getHatchedFill() { HwmfDrawProperties prop = getProperties(); BufferedImage pattern = getPatternFromLong( prop.getBrushHatch().getPattern(), prop.getBackgroundColor().getColor(), prop.getBrushColor().getColor(), prop.getBkMode() == HwmfBkMode.TRANSPARENT ); return new TexturePaint(pattern, new Rectangle(0,0,8,8)); } public static BufferedImage getPatternFromLong(long patternLng, Color background, Color foreground, boolean hasAlpha) { final int[] cmap = {background.getRGB(), foreground.getRGB()}; final IndexColorModel icm = new IndexColorModel(1, 2, cmap, 0, hasAlpha, hasAlpha ? 0 : -1, DataBuffer.TYPE_BYTE); final BufferedImage pattern = new BufferedImage(8, 8, BufferedImage.TYPE_BYTE_INDEXED, icm); byte[] pt = new byte[64]; for (int i=0; i>> i) & 1); } pattern.getRaster().setDataElements(0, 0, 8, 8, pt); return pattern; } protected Paint getPatternPaint() { HwmfDrawProperties prop = getProperties(); ImageRenderer bb = prop.getBrushBitmap(); if (bb == null) { return null; } Dimension2D dim = bb.getDimension(); Rectangle2D rect = new Rectangle2D.Double(0, 0, dim.getWidth(), dim.getHeight()); rect = prop.getBrushTransform().createTransformedShape(rect).getBounds2D(); return new TexturePaint(bb.getImage(), rect); } /** * Adds an record of type {@link HwmfObjectTableEntry} to the object table. * * Every object is assigned the lowest available index-that is, the smallest * numerical value-in the WMF Object Table. This binding happens at object creation, * not when the object is used. * Moreover, each object table index uniquely refers to an object. * Indexes in the WMF Object Table always start at 0. * * @param entry the object table entry */ public void addObjectTableEntry(HwmfObjectTableEntry entry) { int objIdx = objectIndexes.nextClearBit(0); objectIndexes.set(objIdx); objectTable.put(objIdx, entry); } /** * Applies the object table entry * * @param index the index of the object table entry (0-based) * * @throws IndexOutOfBoundsException if the index is out of range * @throws NoSuchElementException if the entry was deleted before */ public void applyObjectTableEntry(int index) { HwmfObjectTableEntry ote = objectTable.get(index); if (ote == null) { throw new NoSuchElementException("WMF reference exception - object table entry on index "+index+" was deleted before."); } ote.applyObject(this); } /** * Unsets (deletes) the object table entry for further usage * * When a META_DELETEOBJECT record (section 2.3.4.7) is received that specifies this * object's particular index, the object's resources are released, the binding to its * WMF Object Table index is ended, and the index value is returned to the pool of * available indexes. The index will be reused, if needed, by a subsequent object * created by another Object Record Type record. * * @param index the index (0-based) * * @throws IndexOutOfBoundsException if the index is out of range */ public void unsetObjectTableEntry(int index) { if (index < 0) { throw new IndexOutOfBoundsException("Invalid index: "+index); } // sometime emfs remove object table entries before they set them // so ignore requests, if the table entry doesn't exist objectTable.remove(index); objectIndexes.clear(index); } /** * Saves the current properties to the stack */ public void saveProperties() { final HwmfDrawProperties p = getProperties(); assert(p != null); p.setTransform(graphicsCtx.getTransform()); p.setClip(graphicsCtx.getClip()); propStack.add(p); prop = newProperties(p); } /** * Restores the properties from the stack * * @param index if the index is positive, the n-th element from the start is activated. * If the index is negative, the n-th previous element relative to the current properties element is activated. */ public void restoreProperties(int index) { if (index == 0) { return; } int stackIndex = index; if (stackIndex < 0) { int curIdx = propStack.indexOf(getProperties()); if (curIdx == -1) { // the current element is not pushed to the stacked, i.e. it's the last curIdx = propStack.size(); } stackIndex = curIdx + index; } if (stackIndex == -1) { // roll to last when curIdx == 0 stackIndex = propStack.size()-1; } // The playback device context is restored by popping state information off a stack that was created by // prior SAVEDC records // ... so because being a stack, we will remove all entries having a greater index than the stackIndex for (int i=propStack.size()-1; i>=stackIndex; i--) { prop = propStack.remove(i); } graphicsCtx.setTransform(prop.getTransform()); graphicsCtx.setClip(prop.getClip()); } /** * After setting various window and viewport related properties, * the underlying graphics context needs to be adapted. * This methods gathers and sets the corresponding graphics transformations. */ public void updateWindowMapMode() { Rectangle2D win = getProperties().getWindow(); Rectangle2D view = getProperties().getViewport(); HwmfMapMode mapMode = getProperties().getMapMode(); graphicsCtx.setTransform(getInitTransform()); switch (mapMode) { default: case MM_ANISOTROPIC: // scale window bounds to output bounds if (view != null) { graphicsCtx.translate(view.getCenterX(), view.getCenterY()); graphicsCtx.scale(view.getWidth() / win.getWidth(), view.getHeight() / win.getHeight()); graphicsCtx.translate(-win.getCenterX(), -win.getCenterY()); } break; case MM_ISOTROPIC: // TODO: to be validated ... // like anisotropic, but use x-axis as reference graphicsCtx.translate(bbox.getCenterX(), bbox.getCenterY()); graphicsCtx.scale(bbox.getWidth()/win.getWidth(), bbox.getWidth()/win.getWidth()); graphicsCtx.translate(-win.getCenterX(), -win.getCenterY()); break; case MM_LOMETRIC: case MM_HIMETRIC: case MM_LOENGLISH: case MM_HIENGLISH: case MM_TWIPS: { // TODO: to be validated ... GraphicsConfiguration gc = graphicsCtx.getDeviceConfiguration(); graphicsCtx.transform(gc.getNormalizingTransform()); graphicsCtx.scale(1./mapMode.scale, -1./mapMode.scale); graphicsCtx.translate(-win.getX(), -win.getY()); break; } case MM_TEXT: // TODO: to be validated ... break; } } public void drawString(byte[] text, int length, Point2D reference) { drawString(text, length, reference, null, null, null, null, false); } public void drawString(byte[] text, int length, Point2D reference, Dimension2D scale, Rectangle2D clip, WmfExtTextOutOptions opts, List dx, boolean isUnicode) { final HwmfDrawProperties prop = getProperties(); final AffineTransform at = graphicsCtx.getTransform(); try { at.createInverse(); } catch (NoninvertibleTransformException e) { return; } final HwmfFont font = prop.getFont(); if (font == null || text == null || text.length == 0) { return; } final Charset charset = getCharset(font, isUnicode); String textString = trimText(charset, text, length); if (textString.isEmpty()) { return; } final DrawFontManager fontHandler = DrawFactory.getInstance(graphicsCtx).getFontManager(graphicsCtx); final FontInfo fontInfo = fontHandler.getMappedFont(graphicsCtx, font); textString = fontHandler.mapFontCharset(graphicsCtx, fontInfo, textString); final AttributedString as = new AttributedString(textString); addAttributes(as::addAttribute, font, fontInfo.getTypeface()); final FontRenderContext frc = graphicsCtx.getFontRenderContext(); calculateDx(textString, dx, font, fontInfo, frc, as); LineBreakMeasurer lbm = new LineBreakMeasurer(as.getIterator(), frc); TextLayout textLayout = lbm.nextLayout(Integer.MAX_VALUE); final double angle = Math.toRadians(-font.getEscapement()/10.); // TODO: find out when to use asian align boolean useAsianAlign = (opts == null) && textString.codePoints().anyMatch(Character::isIdeographic) && charset.displayName(Locale.ROOT). startsWith("GB"); final Point2D dst = getRotatedOffset(angle, frc, as, useAsianAlign); final Shape clipShape = graphicsCtx.getClip(); try { updateClipping(graphicsCtx, clip, angle, opts); // TODO: Check: certain images don't use the reference of the extTextOut, but rely on a moveto issued beforehand Point2D moveTo = (reference.distance(0,0) == 0) ? prop.getLocation() : reference; graphicsCtx.translate(moveTo.getX(), moveTo.getY()); graphicsCtx.rotate(angle); if (scale != null) { graphicsCtx.scale(scale.getWidth() < 0 ? -1 : 1, scale.getHeight() < 0 ? -1 : 1); } graphicsCtx.scale(at.getScaleX() < 0 ? -1 : 1, at.getScaleY() < 0 ? -1 : 1); graphicsCtx.translate(dst.getX(), dst.getY()); graphicsCtx.setColor(prop.getTextColor().getColor()); graphicsCtx.drawString(as.getIterator(), 0, 0); // move current location to the end of string AffineTransform atRev = new AffineTransform(); atRev.translate(-dst.getX(), -dst.getY()); if (scale != null) { atRev.scale(scale.getWidth() < 0 ? 1 : -1, scale.getHeight() < 0 ? 1 : -1); } atRev.rotate(-angle); Point2D deltaX = new Point2D.Double(textLayout.getBounds().getWidth(), 0); Point2D oldLoc = prop.getLocation(); prop.setLocation(oldLoc.getX() + deltaX.getX(), oldLoc.getY() + deltaX.getY()); } finally { graphicsCtx.setTransform(at); graphicsCtx.setClip(clipShape); } } /** * The dx array indicate the distance between origins of adjacent character cells. * For example, dx[i] logical units separate the origins of character cell i and character cell i + 1. * So dx{i] is the complete width of the current char + space to the next character * * In AWT we have the {@link TextAttribute#TRACKING} attribute, which works very similar. * As we don't know (yet) the calculation based on the font size/height, we interpolate * between the default tracking and a tracking value of 1 */ private void calculateDx(String textString, List dx, HwmfFont font, FontInfo fontInfo, FontRenderContext frc, AttributedString as) { if (dx == null || dx.isEmpty()) { return; } final List dxList = new ArrayList<>(); Map fontAtt = new HashMap<>(); // Font tracking default (= 0) addAttributes(fontAtt::put, font, fontInfo.getTypeface()); final GlyphVector gv0 = new Font(fontAtt).createGlyphVector(frc, textString); // Font tracking = 1 fontAtt.put(TextAttribute.TRACKING, 1); final GlyphVector gv1 = new Font(fontAtt).createGlyphVector(frc, textString); int beginIndex = 0; for (int offset = 0; offset < dx.size(); offset++) { if (beginIndex >= textString.length()) { break; } DxLayout dxLayout = new DxLayout(); dxLayout.dx = dx.get(offset); dxLayout.pos0 = gv0.getGlyphPosition(offset).getX(); dxLayout.pos1 = gv1.getGlyphPosition(offset).getX(); dxLayout.beginIndex = beginIndex; dxLayout.endIndex = textString.offsetByCodePoints(beginIndex, 1); dxList.add(dxLayout); beginIndex = dxLayout.endIndex; } // Calculate the linear (y ~= Tracking setting / x ~= character spacing / target value) // y = m * x + n // y = ((y2-y1)/(x2-x1))x + ((y1x2-y2x1)/(x2-x1)) DxLayout dx0 = null; for (DxLayout dx1 : dxList) { if (dx0 != null) { // Default Tracking = 0 (y1) double y1 = 0, x1 = dx1.pos0-dx0.pos0; // Second Tracking = 1 (y2) double y2 = 1, x2 = dx1.pos1-dx0.pos1; double track = ((y2-y1)/(x2-x1))*dx0.dx + ((y1*x2-y2*x1)/(x2-x1)); as.addAttribute(TextAttribute.TRACKING, (float)track, dx0.beginIndex, dx0.endIndex); } dx0 = dx1; } } private void addAttributes(BiConsumer attributes, HwmfFont font, String typeface) { Map att = new HashMap<>(); att.put(TextAttribute.FAMILY, typeface); att.put(TextAttribute.SIZE, getFontHeight(font)); if (font.isStrikeOut()) { att.put(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON); } if (font.isUnderline()) { att.put(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON); } if (font.isItalic()) { att.put(TextAttribute.POSTURE, TextAttribute.POSTURE_OBLIQUE); } // convert font weight to awt font weight - usually a font weight of 400 is regarded as regular final int fw = font.getWeight(); Float awtFW = TextAttribute.WEIGHT_REGULAR; for (int i=0; i= WEIGHT_MAP[i]) { awtFW = WEIGHT_MAP[i+1]; break; } } att.put(TextAttribute.WEIGHT, awtFW); att.put(TextAttribute.FONT, new Font(att)); att.forEach(attributes); } private double getFontHeight(HwmfFont font) { // see HwmfFont#height for details double fontHeight = font.getHeight(); if (fontHeight == 0) { return 12; } else if (fontHeight < 0) { return -fontHeight; } else { // TODO: fix font height calculation // the height is given as font size + ascent + descent // as an approximation we reduce the height by a static factor return fontHeight*3/4; } } private Charset getCharset(HwmfFont font, boolean isUnicode) { if (isUnicode) { return StandardCharsets.UTF_16LE; } FontCharset fc = font.getCharset(); if (fc == FontCharset.DEFAULT) { return charsetProvider.get(); } Charset charset = fc.getCharset(); return (charset == null) ? charsetProvider.get() : charset; } @Override public void setCharsetProvider(Supplier provider) { charsetProvider = provider; } private String trimText(Charset charset, byte[] text, int length) { int trimLen; for (trimLen=0; trimLen= 0 ? dstBounds.getMinX() : dstBounds.getMaxX(), dstBounds.getHeight() >= 0 ? dstBounds.getMinY() : dstBounds.getMaxY(), Math.abs(dstBounds.getWidth()), Math.abs(dstBounds.getHeight())); } private static Insets getSubImageInsets(Rectangle2D srcBounds, Rectangle2D nativeBounds) { // Todo: check if we need to normalize srcBounds x/y, in case of flipped images // for now we assume the width/height is positive int left = (int)Math.round((srcBounds.getX()-nativeBounds.getX())/nativeBounds.getWidth()*100_000.); int top = (int)Math.round((srcBounds.getY()-nativeBounds.getY())/nativeBounds.getHeight()*100_000.); int right = (int)Math.round((nativeBounds.getMaxX()-srcBounds.getMaxX())/nativeBounds.getWidth()*100_000.); int bottom = (int)Math.round((nativeBounds.getMaxY()-srcBounds.getMaxY())/nativeBounds.getHeight()*100_000.); return new Insets(top, left, bottom, right); } /** * @return the initial AffineTransform, when this graphics context was created */ public AffineTransform getInitTransform() { return new AffineTransform(initialAT); } /** * @return the current AffineTransform */ public AffineTransform getTransform() { return new AffineTransform(graphicsCtx.getTransform()); } /** * Set the current AffineTransform * @param tx the current AffineTransform */ public void setTransform(AffineTransform tx) { graphicsCtx.setTransform(tx); } /** * Set the new clipping region * * @param clip the next clipping region to be processed * @param regionMode the mode and operation of how to apply the next clipping region * @param useInitialAT if true, the clipping is applied on the initial (world) coordinate system */ public void setClip(Shape clip, HwmfRegionMode regionMode, boolean useInitialAT) { final AffineTransform at = graphicsCtx.getTransform(); if (useInitialAT) { graphicsCtx.setTransform(getInitTransform()); } final Shape oldClip = graphicsCtx.getClip(); final Shape newClip = regionMode.applyOp(oldClip, clip); if (!Objects.equals(oldClip, newClip)) { graphicsCtx.setClip(newClip); } if (useInitialAT) { graphicsCtx.setTransform(at); } prop.setClip(graphicsCtx.getClip()); } public ImageRenderer getImageRenderer(String contentType) { // TODO: refactor DrawPictureShape method to POI Common return DrawPictureShape.getImageRenderer(graphicsCtx, contentType); } @Internal static class BufferedImageRenderer extends BitmapImageRenderer { public BufferedImageRenderer(BufferedImage img) { this.img = img; } } }