Hello. We are using GroupDocs.Conversion library with a purchased license. Version 22.5.0 is working fine, but after upgrading to 22.6.0 or 22.7.0 we are getting “Evaluation only” at the top left corner only for some types of conversion. For example any-to-PDF is working fine, but any-to-image renders “Evaluation only” warning. It is reproducible only in Linux(docker image).
Could you please share the license file as well? Please share it in a private message. Take a look at this screenshot.png (15.4 KB). Click on my profile and you’ll see a message button there.
Dockerfile.7z archive that you shared doesn’t contain the sample project. Please share a complete sample project in order to be able to build image and to track the issue.
We’d appreciate if you could also share a screencast/video of explaining the steps to reproduce the issue.
Attached minimal sample project with a couple of existing issues. It’s an ASP.NET Core solution with a few endpoints. Run Docker image and bind internal port 80 to host’s 5000 for example. Swagger will be available at http://localhost:5000/swagger/index.html
GET /GroupDocsIssues/license-issue will convert hardcoded PDF to PNG with a license “Evaluation only” issue. As mentioned above, downgrading to GroupDocs.Conversion 22.5.0 will fix the issue. Also, at the same resulting PNG you will see an issue with a black layer from here PDF to PNG conversion issue in .NET CONVERSIONNET-4742 which is still not fixed and is related to a complex scanned PDF document structure.
GET /GroupDocsIssues/fonts-issue will convert DOCX to PDF with bullets list issue - they will be converted to squares. Bullets list was created by default Word functionality. There is no existing CONVERSIONNET issue for this one.
GET /GroupDocsIssues/empty-image-conversion-1 will try convert PDF to PNG but will crash the service with an error “** (process:1): WARNING **: 22:32:37.373: Path conversion requested 780624 bytes (1152 x 5421). Maximum size is 262144 bytes.”. Repeating issue from here PDF to PNG conversion in .NET on Linux
Correct, updating libgdiplus fixed most occurrences of " Path conversion requested X bytes" error but not all of them as you can see from a provided example solution.
Thanks for 22.8, will update our services to this version.
As far as “DOCX to PDF with bullets list” issue is concerned, the problem there is missing Windgings and Symbol fonts used for the bullets. They are not included in the ttf-mscorefonts fonts package installed in Docker image. You have to install them. Possible way to install them is adding:
RUN apt-get install -y curl \
&& apt-get install -y fontconfig
RUN wget -q -O - https://gist.githubusercontent.com/Blastoise/d959d3196fb3937b36969013d96740e0/raw/429d8882b7c34e5dbd7b9cbc9d0079de5bd9e3aa/otherFonts.sh | bash
The issues you have found earlier (filed as CONVERSIONNET-5415) have been fixed in this update. This message was posted using Bugs notification tool by nikola.yankov