Spire.PDF is a professional PDF library applied to creating, writing, editing, handling and reading PDF files without any external dependencies. Get free and professional technical support for Spire.PDF for .NET, Java, Android, C++, Python.

Wed Nov 02, 2016 5:58 pm

Field names sometimes come across as character junk, but sometimes not. In a working application, this seemingly happens for the same exact files, opened at different times.

I cannot replicate that easily, the only proof I have is in the database, it sometimes is recording the real names, sometimes the junk names for the same file.

Here is an example (attached pdf) of when it gives junk for names instead of the real field names:

Code: Select all
            var filename = @"C:\temp\test.pdf";

            using (var file = File.OpenRead(filename))
            {
                var doc = new PdfDocument(file);
               
                var form = doc.Form as PdfFormWidget;

                if (form == null) throw new Exception("No form");

                foreach (var field in form.FieldsWidget.List.Cast<PdfStyledFieldWidget>())
                {
                    Console.WriteLine(field.Name);
                }
            }
            Console.ReadKey();

dev@filevine.com
 
Posts: 9
Joined: Wed Oct 12, 2016 9:49 pm

Thu Nov 03, 2016 2:39 am

Hi,

Thanks for your inquiry.
I have noticed the issue and posted it to our Dev team. We will inform you once there is any news.
Sorry for inconvenience caused.

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Tue Nov 08, 2016 6:46 pm

Any update? Need to know whether to refund this library purchase and find another. On a deadline, as it was in production and is failing.

dev@filevine.com
 
Posts: 9
Joined: Wed Oct 12, 2016 9:49 pm

Wed Nov 09, 2016 2:16 am

Hi,

Thanks for your information.
The issue has been resolved in following hotfix, please check if it resolves the issue.
http://www.e-iceblue.com/downloads/Temp ... 3.8.56.zip
If there is any question, welcome to get it back to us.

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Wed Nov 09, 2016 5:28 pm

Appears to have fixed the problem! Thanks!

dev@filevine.com
 
Posts: 9
Joined: Wed Oct 12, 2016 9:49 pm

Thu Nov 10, 2016 1:32 am

Hi,

Thanks for your feedback.
Please feel free to contact us if there is any question.

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Return to Spire.PDF