Hi,
I am trying to convert images format to the pdf please find the below code for that:
using (var imageStream = new MemoryStream(inputBytes))
{
using (var Outputstream = new MemoryStream())
{
var pdf = new Aspose…...MemoryStream(inputBytes)) { using (var outputStream = new MemoryStream()) {...Add(image); pdf.Save(outputStream); return outputStream.ToArray(); }...