Rank: Member Groups: Member
Joined: 8/8/2019 Posts: 16
|
Hi - I'm using eo.pdf to create a pdf, but for some reason when value of acmblock.style.left is greater than 6.49f ACMRender.Render function freezes and stops responding.
Please see example code below.
PdfDocument doc = new PdfDocument(); AcmRender render = new AcmRender(doc); AcmText acm = new AcmText("mysterious"); AcmBlock acmBlock = new AcmBlock(); acmBlock.Style.Top = 6.80f; //*** bug when left coordinate is greater than 6.49f //*** render freezes, stops responding acmBlock.Style.Left = 6.50f; //comment line above, uncomment line below and works fine //acmBlock.Style.Left = 6.49f; acmBlock.Children.Add(acm); render.Render(acmBlock);
doc.Save(result);
Will appreciate your help.
Thanks,
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi,
We have confirmed this to be an issue. This will be fixed in our next build and we will reply here again as soon as the new build is available.
Thanks!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi,
This is just to let you know that we have posted a new build (20.2.63) that should resolve this issue. You can download the new build from our download page.
Thanks!
|