Currently I am generating pdf and tiff image using asp.net generic handler. I would like to generate pdf and tiff image on client using byte array received from server.
We started migrating our asp.net server based web application to client based web application. We made use of WCF to get data from server and using client technologies we represent data on the browser.
I tried to use jspdf to generate pdf on client, but I don't find proper API's to pass byte array and generate pdf. Additionally i should be able to generate tiff images too.
I cant use itextsharp too as I don't store files physically. PDF and tiff content will be stored in DB as byte array. This byte array will be fetched and should be shown as PDF and tiff on the client. Thanks for your help in advance.