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
This commit is contained in:
Jeremias Maerki 2009-10-22 09:16:37 +00:00
parent fefb139375
commit 7839918c68
2 changed files with 5 additions and 2 deletions

View 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());

View 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>