Hi,
I'm working on an asp.net core 3.1 app hosted on cloud foundry linux environment. My app involves creating an excel, and saving it as xlsx, csv and pdf. When i deploy it on cloud foundry, xlsx and csv files are generated successfully, but when i try to save it as pdf, i encounter the following exception:
[41m[30mfail[39m[22m[49m: SyncfusionExcel.Controllers.ExcelController[0]2021-11-02T12:05:27.918+05:30 [APP/PROC/WEB/0] [OUT] Unable to load shared library 'libSkiaSharp' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: liblibSkiaSharp: cannot open shared object file: No such file or directory
Also, I have developer rights only, so, can't install the libs using docker file.
I'm using dotnet core build pack and apt buildpack for cloud foundry.
libgdiplus is already included in the dotnet core build pack, and i've tried installing libc6-dev library, but it doesn't help. Can you please suggest me a way out?