/************************************************************************ * * ImageLoader.java * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Copyright: 2002-2008 by Henrik Just * * All Rights Reserved. * * Version 1.0 (2008-11-22) * */ package writer2latex.office; //import java.io.ByteArrayInputStream; //import java.io.ByteArrayOutputStream; //import java.io.IOException; import java.util.HashSet; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import writer2latex.api.GraphicConverter; import writer2latex.util.Base64; import writer2latex.util.Misc; import writer2latex.xmerge.BinaryGraphicsDocument; import writer2latex.xmerge.EmbeddedObject; import writer2latex.xmerge.EmbeddedBinaryObject; import writer2latex.xmerge.OfficeDocument; //import writer2latex.util.*; /** *

This class extracts images from an OOo file. * The images are returned as BinaryGraphicsDocument.

*/ public final class ImageLoader { // The Office document to load images from private OfficeDocument oooDoc; // Data for file name generation private String sOutFileName; private boolean bUseSubdir = false; private int nImageCount = 0; // should EPS be extracted from SVM? private boolean bExtractEPS; // Data for image conversion private GraphicConverter gcv = null; private boolean bAcceptOtherFormats = true; private String sDefaultFormat = null; private String sDefaultVectorFormat = null; private HashSet acceptedFormats = new HashSet(); public ImageLoader(OfficeDocument oooDoc, String sOutFileName, boolean bExtractEPS) { this.oooDoc = oooDoc; this.sOutFileName = sOutFileName; this.bExtractEPS = bExtractEPS; } public void setOutFileName(String sOutFileName) { this.sOutFileName = sOutFileName; } public void setUseSubdir(boolean bUseSubdir) { this.bUseSubdir = bUseSubdir; } public void setAcceptOtherFormats(boolean b) { bAcceptOtherFormats = b; } public void setDefaultFormat(String sMime) { addAcceptedFormat(sMime); sDefaultFormat = sMime; } public void setDefaultVectorFormat(String sMime) { addAcceptedFormat(sMime); sDefaultVectorFormat = sMime; } public void addAcceptedFormat(String sMime) { acceptedFormats.add(sMime); } private boolean isAcceptedFormat(String sMime) { return acceptedFormats.contains(sMime); } public void setGraphicConverter(GraphicConverter gcv) { this.gcv = gcv; } public BinaryGraphicsDocument getImage(Node node) { // node must be a draw:image element. // variables to hold data about the image: String sMIME = null; String sExt = null; byte[] blob = null; String sHref = Misc.getAttribute(node,XMLString.XLINK_HREF); if (sHref==null || sHref.length()==0) { // Image must be contained in an office:binary-element as base64: Node obd = Misc.getChildByTagName(node,XMLString.OFFICE_BINARY_DATA); if (obd!=null) { StringBuffer buf = new StringBuffer(); NodeList nl = obd.getChildNodes(); int nLen = nl.getLength(); for (int i=0; i