Garbled character in GetInfo

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Garbled character in GetInfo

    Hi,

    I have taken a PDF file and go to its property

    2) Then Go to it “PDF” tab

    3) In the Title set as 123*423

    4) Now importing the pdf file thru my application, Now go the imported file properties and see the Title.

    5) 123*423 - * is changed to some other character (Like multiple symbol this is happening for divide symbol also)

    Environment: Japanese XP and Japanese Acrobat 7.0/8.0

    //code
    CString CAcroPDDoc::GetInfo(LPCTSTR szInfoKey)
    {
    CString result;
    static BYTE parms[] =
    VTS_BSTR;
    InvokeHelper(0x8, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms,
    szInfoKey);
    return result;
    }

    //call
    _tcscpy( pdfExportDocProperties.m_Title ,acroPDDoc.GetInfo( _T("Title") ) );
    // call end

    InvokeHelper(0x8, DISPATCH_METHOD, VT_BSTR, (void*)&result, parms,
    szInfoKey); - szInfoKey value is garbled. How to handle this in Acrobat.

    Regards,
    Gnanaprakash
    //
    Gnanaprakash@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Garbled/Stacked characters when printing
      3.06 GHz Intel Core 2 Duo 10.5.5 Acrobat Pro 8 Have a sudden and perplexing problem this morning ... Went to print PDFs (which I've printed...
    2. ANNOUNCE: Verilog-GetInfo-1.0.1.pm
      ANNOUNCE: Verilog-GetInfo-1.0.1.pm is being released in the directory http://backpan.perl.org/authors/id/R/RO/ROHITM/Verilog-GetInfo-1.0.1.pm ...
    3. html output getting garbled
      Hi, My Windows machine running PHP Version 4.3.4, Apache, mysql, Zend IDE has developed a strange problem whereas the html code coming out of php...
    4. Garbled letters when opening PDF
      A client of mine is having trouble reading a pdf document that we created using PDF Writer Version 5.0. When he opens the pdf the letters are all...
    5. sco 5.0.2 cd boots to garbled video...
      i'm trying to boot an sco 5.0.2 cd to install on a dell dimension xps t500 (pentium-iii 500). after the post, the system accesses the cd and the...
  3. #2

    Default Re: Garbled character in GetInfo

    I have got garbled only for below character
    123×456 (× -garbled, we have some more character like this in Japanese language.)
    Gnanaprakash@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139