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.

Tue Nov 16, 2021 10:47 am

I have a problem with some (3 identified so far) PDFs that have been created by DocPathController which seems to use Dynamic PDF for .net. I'm not sure if the issue is related to these products, but it is a common factor with the 3 documents that are failing to highlight.

I have created some minimalist recreation code below and will send the source document through to the support email address.

Code: Select all
        public void HighlightingIssue()
        {
            PdfDocument doc = new PdfDocument();
            string strFileName = @"problematic_11pages.pdf";
            string strTarget = @"problematic_11pages-highlighted.pdf";

            doc.LoadFromFile(strFileName);

            // Highlight the phrases on just the 1st page
            foreach (PdfTextFind textCurrent in doc.Pages[0].FindText("Schaumburg, IL 60173|ALEJANDRO", TextFindParameter.Regex).Finds)
            {
                textCurrent.ApplyHighLight(Color.Gold);
            }

            doc.SaveToFile(strTarget);

            doc.Dispose();
        }


As you will see the PdfTextFind call is working and the call to ApplyTextHighLight is made twice using this code along with the PDF provided.

All help is appreciated.

Darren

wraydc
 
Posts: 130
Joined: Wed Apr 11, 2018 5:14 am

Wed Nov 17, 2021 6:57 am

Hello,

Thanks for your inquiry.
I tested your PDF file and reproduced your issue. I have logged the issue into our bug tracking system with the ticket number SPIREPDF-4785. Our development team will investigate and fix it. Once it is resolved, I will inform you in time. Sorry for the inconvenience caused.

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Wed Dec 01, 2021 3:20 pm

Just a quick follow-up on this issue. Any news back from the development or test teams yet?

KR,

Darren

wraydc
 
Posts: 130
Joined: Wed Apr 11, 2018 5:14 am

Thu Dec 02, 2021 1:26 am

Hello,

Thank you for your follow-up.
Good news is that the issue SPIREPDF-4785 has been solved. Once the new version is available, I will inform you immediately. Hope you can wait patiently.

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Mon Dec 06, 2021 5:29 pm

Thanks for the update :D

Do you have any estimate for how long it will be until the release is available?

Many thanks in advance,

Darren

wraydc
 
Posts: 130
Joined: Wed Apr 11, 2018 5:14 am

Tue Dec 07, 2021 3:36 am

Hi,

You're welcome.
News from testers, the new version of Spire.Office for .NET will be released this month. Once it is released, I will inform you in time.

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Mon Dec 13, 2021 11:15 am

Hi, just a quick request for an update on this one.

We have the holiday season spinning up in Europe and the US, it would be good to have a release ASAP if possible :)

Speak soon,

Darren

wraydc
 
Posts: 130
Joined: Wed Apr 11, 2018 5:14 am

Tue Dec 14, 2021 2:00 am

Hi,

Thank you for your follow-up.
Good news that the new version of Spire. Office for .NET will be released within this week. Hope you can wait patiently.

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Wed Dec 15, 2021 9:34 am

Hello,

Thank you for your patience.
Glad to inform that we just released Spire.Office Platinum(Hotfix) Version:6.12.1 which fixed the issue SPIREPDF-4785, please download it from the following links to test.
Website link:
https://www.e-iceblue.com/Download/download-office-for-net-now.html
Nuget link:
https://www.nuget.org/packages/Spire.Office/6.12.1
https://www.nuget.org/packages/Spire.Office.NETCore/6.12.1

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Tue Dec 21, 2021 9:02 am

Hello,

Hope you are doing well!
Have you tried the new version of Spire.Office? Is the issue resolved now? Any feedback will be greatly appreciated.

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Fri Dec 24, 2021 9:18 am

Yes, all tested and the issue is resolved - Thank you for your hard work on this :)

Darren

wraydc
 
Posts: 130
Joined: Wed Apr 11, 2018 5:14 am

Fri Dec 24, 2021 9:24 am

Hello,

You're welcome.
If you encounter other issues related to our products in the future, please feel free to contact us.
Wish you all the best!

Sincerely,
Annika
E-iceblue support team
User avatar

Annika.Zhou
 
Posts: 1643
Joined: Wed Apr 07, 2021 2:50 am

Return to Spire.PDF

cron