Sfoglia il codice sorgente

Bugzilla #47711:

Fixed generation of CIDSet object in PDF output.
Submitted by: Nicolas Peninguy <nico.at.lostgeeks.org>

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@828516 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_0
Jeremias Maerki 14 anni fa
parent
commit
7839918c68
2 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  1. 2
    2
      src/java/org/apache/fop/fonts/CIDSubset.java
  2. 3
    0
      status.xml

+ 2
- 2
src/java/org/apache/fop/fonts/CIDSubset.java Vedi File

@@ -161,12 +161,12 @@ public class CIDSubset {
}

/**
* Returns a BitSet with bits set for each available glyph index.
* Returns a BitSet with bits set for each available glyph index in the subset.
* @return a BitSet indicating available glyph indices
*/
public BitSet getGlyphIndexBitSet() {
BitSet bitset = new BitSet();
Iterator iter = usedGlyphs.keySet().iterator();
Iterator iter = usedGlyphsIndex.keySet().iterator();
while (iter.hasNext()) {
Integer cid = (Integer)iter.next();
bitset.set(cid.intValue());

+ 3
- 0
status.xml Vedi File

@@ -58,6 +58,9 @@
documents. Example: the fix of marks layering will be such a case when it's done.
-->
<release version="FOP Trunk" date="TBD">
<action context="Fonts" dev="JM" type="fix" fixes-bug="47711" due-to="Nicolas Peninguy">
Fixed generation of CIDSet object in PDF output.
</action>
<action context="Layout" dev="VH" type="fix">
Fixed handling of percentage values for provisional-label-separation.
</action>

Loading…
Annulla
Salva