When converting from Image to PDF using Aspose.PDF, there seems to be a memory leak when using RgbToDeviceGrayConversionStrategy()
I have proviced a code example below:
Private Sub ConvertToGreyscale(ByRef doc As AP.Document)
Dim strategy = New Aspose.Pdf.RgbToDeviceGrayConversionStrategy()
For Each page In doc.Pages
strategy.Convert(page)
Next
End Sub
This was also present in version 19.4, and upgrading to 19.9 hasn’t solved the issue. Could you please look in to this.