Welcome Guest Search | Active Topics | Sign In | Register

Missing char´s after upgrading version of eo.PDF Options
Nuno Nogueira
Posted: Monday, November 28, 2011 12:57:46 PM
Rank: Member
Groups: Member

Joined: 2/24/2011
Posts: 25
Hello.

I have noticed a missing char´s after updating to last version of eo.PDF

Some char´s like ^ ~ ´ ` disapear

Eletrônica becomes Eletronica
Período becomes Per odo (Where is I char ? )
Informações become Informacoes

Any ideas ?

PS: eo.PDF 3.0.58.2 > to last version and eo.web 8.0.47.2 to last version are updated
When roll back to previuos version, the problem has gone.

eo_support
Posted: Monday, November 28, 2011 6:10:22 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

We tested this with the latest version and it works fine. So you might want to try that first and see if it resolves the problem. If the problem continues, please create a test HTML file and post the HTML file, we will then take a look.

Thanks!
Nuno Nogueira
Posted: Tuesday, November 29, 2011 8:29:59 AM
Rank: Member
Groups: Member

Joined: 2/24/2011
Posts: 25
Its not only on html converter, its affect PDF creator too, acm text for example.

I will try upgrade again, if problem continue what u need to debug ?

Its seems to be a regional problem, here in my country we use accents and other char´s, sometimes a few components need more configuration to run.

eo_support
Posted: Tuesday, November 29, 2011 9:41:34 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

I believe our previous reply has already answered all of your questions.

Thanks
Nuno Nogueira
Posted: Tuesday, November 29, 2011 11:08:29 AM
Rank: Member
Groups: Member

Joined: 2/24/2011
Posts: 25
Hello.

I try upgrade, and problem continues, it seems some differences between DLL´s, before i used 2 DLL´s for PDF, one for html converter and other for ACM contents, now in this new version we use just one for both. There is any a option to configure on ur tool ? Or we need wait for next version ?

Thanks
eo_support
Posted: Tuesday, November 29, 2011 11:15:12 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
We have asked you to provide a test file to reproduce the problem since our first reply. You just keep ignoring that. We will not know what it is the root cause unless we can reproduce the problem and investigate it. So there is nothing else we can tell you until that happens.

Thanks
Nuno Nogueira
Posted: Tuesday, November 29, 2011 11:59:30 AM
Rank: Member
Groups: Member

Joined: 2/24/2011
Posts: 25
Ok, i try reproduce the problem.

It seems occur when merge documents only, removing accents from all docs merged (Inconsistências changed to Inconsistencias), if u change:

Code: Visual Basic.NET
doc3.save(response.outputstream)
for
Code: Visual Basic.NET
doc.save(response.outputstream)
OR
Code: Visual Basic.NET
doc2.save(response.outputstream)


We have accents works.

Here is the full code

Code: Visual Basic.NET
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
       Dim doc as PdfDocument = new PdfDocument
        Dim doc2 As PdfDocument = New PdfDocument
        'Create an ACM Render
        Dim render As AcmRender = New AcmRender(doc)
        Dim render2 As AcmRender = New AcmRender(doc2)
        'Create an ACM text object
        Dim text As AcmText = New AcmText("InconsistĂȘncias!")
        Dim text2 As AcmText = New AcmText("InconsistĂȘncias2")

        'Render the text object to the PDF
        render.Render(text)
        render2.Render(text2)

        Dim doc3 As PdfDocument = PdfDocument.Merge(doc, doc2)

        Dim response As HttpResponse = HttpContext.Current.Response
        response.Clear()
        response.ClearHeaders()
        response.AddHeader("Content-Disposition", "attachment;filename=Relatorio_" + Guid.NewGuid.ToString + ".pdf")
        response.ContentType = "application/pdf"

        doc3.Save(response.OutputStream)


    End Sub


I was perfectly clear now?
eo_support
Posted: Tuesday, November 29, 2011 1:11:54 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

This is clear. We will run the code and get back to you as soon as possible.

Thanks!
eo_support
Posted: Wednesday, November 30, 2011 3:32:30 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

We have posted a new build that should fix this problem. Please see your private message for the download location.

Thanks!
Nuno Nogueira
Posted: Wednesday, November 30, 2011 4:15:22 PM
Rank: Member
Groups: Member

Joined: 2/24/2011
Posts: 25
Hello.

Its ok now, thanks!
eo_support
Posted: Wednesday, November 30, 2011 4:30:45 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Great. Thank you very much for comfirming the fix!
Nuno Nogueira
Posted: Wednesday, November 30, 2011 4:47:28 PM
Rank: Member
Groups: Member

Joined: 2/24/2011
Posts: 25
No problem, u welcome.


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.