Artefact: special characters related issue

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Artefact: special characters related issue

EVELYN CUSI LOPEZ
Hello all,

We are working with artefact, but we have a problem when using special characters in text, since when entering text with special characters (i.e.cçćčeéeèëêęē ) the PDF is generated in white. Below, you may find a small example to replicate this error: -=-=-==-=-=-==-=-=-==-=-=-==-=-=-==-=-=-== PDFDemos class >> specialCharacterTest "PDFDemos specialCharacterTest" <script> self new specialCharacterTest: (self streamNamed: 'specialCharacterTest.pdf') PDFDemos >> specialCharacterTest: aStream | pdfdoc aPage | pdfdoc := PDFDocument new. aPage := PDFPage new. aPage add: (PDFTextElement new from: 20 mm @ 82 mm; text: 'cçćčeéeèëêęē'). pdfdoc add: aPage. pdfdoc exportTo: aStream -=-=-==-=-=-==-=-=-==-=-=-==-=-=-==-=-=-== We have already tried different types of encoding, without success since we only obtain text with empty spaces or with foreign characters - Do you have any clue to address this error? Any help is very welcome, thanks :slight_smile:
Reply | Threaded
Open this post in threaded view
|

Re: Artefact: special characters related issue

Sabine Manaa