Quote:
How to convert an image (jpg that is in byte array base 64) to a .PDF(in byte array) in C#
First, do yourself a favor and stop combining problems into super problems, rather split problems.
A jpg encoded in base64 is only for your convenience.
- Convert base64 image back to original byte stream, and may be save it as file depending on tool that will convert to pdf.
- then convert to pdf.
It will be much easier than looking for a tool that do exactly what you need.