Rank: Newbie Groups: Member
Joined: 10/14/2015 Posts: 7
|
Hello - I'm using EO.pdf 2013 and am developing on a new PC. When running my programs on my new PC all the PdfFields are in a smaller font. My application uses a base PDF document as a template, collects information from the user to set PdfField values, then saves a copy by cloning the template PDF.
I've been able to narrow it down to the font sizes changing when either a Clone() call is made or the PDF is saved to disk.
For example: I've set a watch on one of the PdfFields. It has a Font.Name value of "Arial" and Font.Size value of 18.0.
Then
finalDoc = proposalDoc.Clone();
is executed and the Font.Size changes to 7.37280035.
I get the same result if the following is run instead of Cloning:
finalDoc = proposalDoc; finalDoc.Save(Server.MapPath(thisFileName)); <-- this changes the font size
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi, Can you isolate the problem into a small test project and then send the test project to us? See here for more details: https://www.essentialobjects.com/forum/test_project.aspxOnce we have that we will investigate further. Thanks!
|