Can I use ghostscript API to convert PDF to some other format without reading data from disk or writing results to disk? It has a big overhead!
I need something like this:
public static byte[][] ConvertPDF(byte[] pdfData)
{
//// Returns an array of byte-array of pages data
}