/************************************************************************ * * 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