diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt index 949a7dd..ae0968d 100644 --- a/source/distro/changelog.txt +++ b/source/distro/changelog.txt @@ -2,6 +2,12 @@ Changelog for Writer2LaTeX version 0.5 -> 1.0 ---------- version 1.0 beta ---------- +[w2l] Bugfix: Added missing hyperlink targets for frames and graphics + +[w2x] Bugfix: Fixed null pointer exception for text frames without height attribute + +[w2l] Added spanish translation from Emilio José Juárez Pérez + [w2l] Added support for bitmap graphics with backend=dvips [all] No longer create source distribution (SourceForge provides tarballs generated diff --git a/source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java b/source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java new file mode 100644 index 0000000..745a7f5 --- /dev/null +++ b/source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java @@ -0,0 +1,87 @@ +/************************************************************************ + * + * EPSCleaner.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-2009 by Henrik Just + * + * All Rights Reserved. + * + * Version 1.0 (2009-03-09) + */ + +package org.openoffice.da.comp.w2lcommon.filter; + +/** This class removes redundant binary information from EPS files created by OOo. + * See the issue http://qa.openoffice.org/issues/show_bug.cgi?id=25256 + * According to this message http://markmail.org/message/dc6rprmtktxuq35v + * on dev@openoffice.org the binary data is an EPSI preview in TIFF format + * TODO: Is it possible to avoid this export? + */ +public class EPSCleaner { + + // Signatures for start and end in eps + private byte[] psStart; + private byte[] psEnd; + + public EPSCleaner() { + try { + psStart = "%!PS-Adobe".getBytes("US-ASCII"); + psEnd = "%%EOF".getBytes("US-ASCII"); + } + catch (java.io.UnsupportedEncodingException ex) { + // US-ASCII *is* supported :-) + } + + } + + // + public byte[] cleanEps(byte[] blob) { + int n = blob.length; + + int nStart = 0; + for (int i=0; i=blob.length) { return false; } + for (int i=0; i=blob.length) { return false; } - for (int i=0; i