Hi,

Thanks for your support.

We can able to get the Unicode string(pdf_utf16be) from std::wstring.

But if we try to paint the string by using PdfPainter, it's not actually 
painting.

const PdfEncoding* pEncoding = new PdfIdentityEncoding();
pdfPainter.SetFont(Doc->CreateFont("Arial",pEncoding,true));
const pdf_utf16be *check = wstring.c_str();
PdfString str(check);
pdfPainter.DrawText(100, 100, str);


Do we need to specify any specific encoding params for this?


Regards,
Dinesh

-----Original Message-----
From: zyx [mailto:z...@litepdf.cz] 
Sent: 22 June 2015 14:26
To: podofo-users@lists.sourceforge.net
Subject: Re: [Podofo-users] Get JP characters from PDF

On Mon, 2015-06-22 at 06:47 +0000, Dineshkumar Ramalingam wrote:
> Hi,
>  
> We can able to get the Unicode string by using ‘GetStringW()’ method. 
> It returns ‘std::wstring’.
>  
> But if we try to convert ‘std::wstring’ to PdfString then it gives the 
> wrong characters.
>  
> We tries below line to convert ‘std::wstring’ to PdfString,
>  
> PdfString pdfstring(reinterpret_cast<const pdf_utf8*>( 
> std::wstring.c_str()));

        Hi,
std::wstring is defined as typedef basic_string<wchar_t> wstring; [1], thus 
wstring::c_str() returns wchar_t *, which is UTF-16, not UTF-8.
You should convert UTF-16 into UTF-8, or use a different constructor of the 
PdfString (or simply PdfString::setFromWchar_t()).
        Bye,
        zyx

[1] http://www.cplusplus.com/reference/string/wstring/

-- 
http://www.litePDF.cz                                 i...@litepdf.cz


------------------------------------------------------------------------------
Monitor 25 network devices or servers for free with OpManager!
OpManager is web-based network management software that monitors network 
devices and physical & virtual servers, alerts via email & sms for fault. 
Monitor 25 devices for free with no restriction. Download now 
http://ad.doubleclick.net/ddm/clk/292181274;119417398;o
_______________________________________________
Podofo-users mailing list
Podofo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/podofo-users


::DISCLAIMER::
----------------------------------------------------------------------------------------------------------------------------------------------------

The contents of this e-mail and any attachment(s) are confidential and intended 
for the named recipient(s) only.
E-mail transmission is not guaranteed to be secure or error-free as information 
could be intercepted, corrupted,
lost, destroyed, arrive late or incomplete, or may contain viruses in 
transmission. The e mail and its contents
(with or without referred errors) shall therefore not attach any liability on 
the originator or HCL or its affiliates.
Views or opinions, if any, presented in this email are solely those of the 
author and may not necessarily reflect the
views or opinions of HCL or its affiliates. Any form of reproduction, 
dissemination, copying, disclosure, modification,
distribution and / or publication of this message without the prior written 
consent of authorized representative of
HCL is strictly prohibited. If you have received this email in error please 
delete it and notify the sender immediately.
Before opening any email and/or attachments, please check them for viruses and 
other defects.

----------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------
Monitor 25 network devices or servers for free with OpManager!
OpManager is web-based network management software that monitors 
network devices and physical & virtual servers, alerts via email & sms 
for fault. Monitor 25 devices for free with no restriction. Download now
http://ad.doubleclick.net/ddm/clk/292181274;119417398;o
_______________________________________________
Podofo-users mailing list
Podofo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/podofo-users

Reply via email to