summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-26 20:35:48 +0000
committerAndras Timar <andras.timar@collabora.com>2015-02-06 13:13:33 +0100
commit8f126788e18bc991897855231a167b06d2566438 (patch)
treed50ff66a3f69f4b70166818c896190913c131a11 /vcl
parentbcb9d37f25ad9ba0eeea0797ec76b98793286670 (diff)
Resolves: rhbz#1177022 no width set on space glyph with CM Typewriter fonts
Change-Id: I0dfb044b8a339fa6c473e42f31fc28c200cd03ea (cherry picked from commit 37dc4bdbf25847c95f1668553dbae3e2dc885816) Reviewed-on: https://gerrit.libreoffice.org/14206 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx27
1 files changed, 18 insertions, 9 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index ae87e640c266..888dd1cd88de 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -3090,15 +3090,24 @@ std::map< sal_Int32, sal_Int32 > PDFWriterImpl::emitEmbeddedFont( const Physical
memset( pEncToUnicodeIndex, 0, sizeof(pEncToUnicodeIndex) );
for( Ucs2SIntMap::const_iterator it = pEncoding->begin(); it != pEncoding->end(); ++it )
{
- if( it->second != -1 )
- {
- sal_Int32 nCode = (sal_Int32)(it->second & 0x000000ff);
- nEncoding[ nCode ] = static_cast<sal_uInt8>( nCode );
- nEncodedCodes[ nCode ] = it->first;
- pEncToUnicodeIndex[ nCode ] = static_cast<sal_Int32>(aUnicodes.size());
- aUnicodes.push_back( it->first );
- pUnicodesPerGlyph[ nCode ] = 1;
- }
+ if(it->second == -1)
+ continue;
+ sal_Int32 nCode = (sal_Int32)(it->second & 0x000000ff);
+ //We're not doing this right here. We have taken a unicode-to-font_index map
+ //and are trying to generate a font_index-to-unicode mapping from it
+ //Which assumes that there is a 1-to-1 mapping there, but that might not be
+ //true.
+ //
+ //Instead perhaps we could try and get the GetFontCharMap and loop
+ //over sal_UCS4 GetCharFromIndex( int nCharIndex ) const from 0 to 255
+ //to build it up
+ if (nEncodedCodes[nCode] != 0)
+ continue;
+ nEncodedCodes[ nCode ] = it->first;
+ nEncoding[ nCode ] = static_cast<sal_uInt8>( nCode );
+ pEncToUnicodeIndex[ nCode ] = static_cast<sal_Int32>(aUnicodes.size());
+ aUnicodes.push_back( it->first );
+ pUnicodesPerGlyph[ nCode ] = 1;
}
}