Is the attached Excel document converted to a pdf document and the previously mentioned code applied to it? - Yes, the excel was converted to pdf but with few modifications, so you can refer directly the pdf which I have attached and ignore the excel sheet. The attached pdf should work with the above mentioned code.
@nraj
I’m sorry, I didn’t see that you attached a pdf document in the archive. What version of the library are you using? For the library version 23.10, I applied the given code to the attached file and did not receive an exception. pdf-204-result.pdf (688.6 KB)
The problem still exists. Please find the console application that can be used to reproduce the problem, together with the document that is causing it, attached.
@nraj
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): PDFNET-57280
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
Could you please provide an update on the current status of the reported issue with Issue ID(s): PDFNET-57280? Your assistance in this matter would be greatly appreciated.
@nraj
Nothing new for this task yet. Created tasks are solved in the order they are received, taking into account priorities.
The highest priority is for tasks with paid support, followed by tasks from users who have purchased a license.
The time it takes to solve problems can also vary. Therefore, unfortunately, it is not even possible to give ETA.
@sergei.shibanov
As a workaround we wrote our custom code to replace new line characters
foreach (var textFragment in textFragmentCollection)
{
var text = textFragment.Text;
if (text.Contains("\r\n"))
{
text = text.Replace("\r\n", "").Replace("[", "").Replace("]", "");
}
else
{
text = text.Replace("[", "").Replace("]", "");
}
textFragment.Text = text;
Console.WriteLine($"Text Fragment :{textFragment.Text}");
textFragment.TextState.ForegroundColor = foregroundColor;
textFragment.TextState.BackgroundColor = backgroundColor;
}
textFragment.Text = text;
This line is throwing error. It is not allowing to modify textFragment.Text.
Please do look into this on priority and let us know as soon as the fix is available as it is a blocker for us.
Thanks in advance.
We are afraid that the earlier logged ticket hasn’t been resolved yet. However, we have recorded your concerns and will surely inform you once we have some updates in this regard. Please be patient and spare us some time.
Can you share your sample PDF document and the sample code snippet that you are using? We will test the scenario in our environment and address it accordingly. Also, please make sure that you test with 25.3 version of the API before sharing the requested information.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
Enables storage, such as cookies, related to analytics.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.