Resolved conversion base64 pdf to base64 png

Dev Think

Member
Joined
Jun 23, 2021
Messages
15
Programming Experience
1-3
Is it possible convert bas64string pdf to png bas64string for cross-platform?
FYI, i am already using this code. (pdf base64 to image C# Code Example), it uses "system.Drawing" which is useful in windows but not supported in Linux, MacOS e.t.c
 
Last edited:
Base64 is just a way to encode bytes to string and back. It doesn't change data in any way.
Converting pdf to image is completely separate, and you need some kind of library to do that. There are several, but one such library I've found in Nuget is Docnet.Core which is .NET Standard 2.0 and cross-platform.
 
Base64 is just a way to encode bytes to string and back. It doesn't change data in any way.
Converting pdf to image is completely separate, and you need some kind of library to do that. There are several, but one such library I've found in Nuget is Docnet.Core which is .NET Standard 2.0 and cross-platform.
Thanks JohnH, but i am using .Net core 3.0
 
Back
Top Bottom