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 Jul 03, 2024 6:42 am

Hi,

I apologize, but we haven't released a new version yet. The new solution is currently in the testing phase. If no issues are found during testing on the Linux system, we plan to release the new version within this month. Once it's released, we will notify you immediately. If there are any issues during testing that prevent the release, we will also provide you with timely feedback.

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Tue Jul 09, 2024 7:11 am

Hi Team,

We are waiting for solutions on this issue , as our productivity is more damaged due to we are not implementing this functionality to the market. We waiting for the solution since one month but did not see any solution, please fix the issue ASAP and mention the exact TAT for this issue.

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Tue Jul 09, 2024 9:54 am

Hi,

I'm sorry, but this issue is still in the testing phase. As it's a new feature, the testing process is quite complicated, please understand. If the testing is successful, a new version will be released within this month, and we will notify you promptly.

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Thu Jul 18, 2024 6:59 am

Hi Team,

Please provide us any updates on this whether the testing is successful or not. If yes, when do we expect this updated release in the market.

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Thu Jul 18, 2024 9:58 am

Hi,

Thank you for your following up.
I'm sorry, but since this is a new feature, we discovered some issues during testing, and the development team has made adjustments to the problem. Currently, it has been re-entered into the testing phase. Would you be willing to accept a temporary version? Please let us know if you need it.

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Thu Jul 18, 2024 10:07 am

Hi Team,

For now Please share us the testing phase release one , After that share the fully tested one later .

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Fri Jul 19, 2024 9:50 am

Hi,

I'm very sorry, but we found a new problem in our further testing today. Our developers are urgently fixing it. We will compile a temporary version for you as soon as the problem is resolved!

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Thu Jul 25, 2024 9:30 am

Hi Team,

Any update here , Is that issue got fixed by your dev team , By when do we expect the new release of this issue fixed .

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Fri Jul 26, 2024 10:11 am

Hi,

I'm very sorry. If there is no problem with the test, we will release the official version with this issue fixed within next week. And we will inform you ASAP.

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Tue Jul 30, 2024 6:35 am

Hi,

Thank you for your patience.
We have released the latest version of Spire.PDF, which incorporates a new method for converting HTML to PDF. Since this new method relies on Google Chrome, please install Google Chrome in your environment first, and then refer to the following code for testing. I attached my output file for your reference.

Spire.PDF Pack(Hot Fix) 10.7.21:https://www.e-iceblue.com/Download/download-pdf-for-net-now.html
Nuget Downloading:
https://www.nuget.org/packages/Spire.PDF/10.7.21
https://www.nuget.org/packages/Spire.PD ... rd/10.7.21


Code: Select all
static void TestChrome()
{
    string inputFile = @"Narender4218.html";
    string outputFile = @"output.pdf";

    string chromeLocation = @"/usr/bin/google-chrome";
    string url = "file://" + new FileInfo(inputFile).FullName.Replace('\\', '/');
    ChromeHtmlConverter converter = new ChromeHtmlConverter(chromeLocation);
    ConvertOptions options = new ConvertOptions();
    options.Timeout = options.Timeout = 10 * 3000; ;
    options.PageSettings = new PageSettings(PaperFormat.A4)
    {
        MarginTop = 0,
        MarginLeft = 0,
        MarginRight = 0,
        MarginBottom = 0

    };
    converter.ConvertToPdf(url, outputFile, options);
}


Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Tue Jul 30, 2024 2:17 pm

Hi Team,

Thanks for the update. can you please provide sample docker container project for the same , so that it will be easy to implement in our env.

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Wed Jul 31, 2024 7:12 am

Hi Team,

Any Update here, regarding sample docker project to implement at our end.

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Wed Jul 31, 2024 9:19 am

Hi,

I'm sorry, but we are not very good at using docker. We need time to investigate how to deploy it in docker, and we will provide you with the project as soon as possible after the investigation is completed.

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Wed Jul 31, 2024 9:32 am

Hi Team,

If providing sample docker project is not possible please provide the exact steps to implement in our environment providing sample project other than docker , so that we can replicate the same .

ceipalAdmin
 
Posts: 56
Joined: Mon Apr 22, 2019 6:31 am

Thu Aug 01, 2024 5:45 am

Hi,

Thank you for your understanding.
Please refer to steps below to implement it. And I uploaded my project for your reference.
1. Install Chrome on your system. If you're still using the previous version of Ubuntu, please follow the commands below to install it:
Code: Select all
  a. wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  b.sudo apt-get update
  c. sudo apt install ./google-chrome-stable_current_amd64.deb

2. If the above steps are successfully executed, Chrome is generally installed in the /usr/bin directory. You can switch to this directory to check if Chrome is present.
3. Then you can unzip my project, upload the bin\Release\net6.0\publish\linux-x64 folder to your Linux system. After switching to the folder path, directly execute dotnet TestChrome.dll.

my project:https://www.e-iceblue.com/downloads/attachment/TestChrome_39469.zip

Sincerely,
Doris
E-iceblue support team
User avatar

Doris.Liu
 
Posts: 409
Joined: Mon Nov 07, 2022 8:10 am

Return to Spire.PDF