I have a use case where users can upload a multi page PDF file.
I want to show preview of each page separately at the time of uploading. One way to it that I can send the file to server and split and send it back to client side for preview but I don't want to do that.
Is there a way to split the PDF at the client side using JavaScript(no server API calls).
If Yes then how and if no then why it is not possible?
Thanks in advance.