security - Provide and Protect a Read Only PDF on Website -


I have a customer who wants to provide PDF documents on their website but they want to ensure that It's safe to download I have seen some JS plugins that provide to readers, but it seems that seeing instantly on the source code will most likely find the path of PDF in most cases. Does anyone have experience with this or know how it can be done?

If you want to allow people to view documents but make it difficult to copy them , You have to do document-rendering server-side. Keep an eye on the user's viewport (size, zoom, coordinates in the document, etc.), present the portion of the document as a static image within the viewport, and send it to the user. Keep in mind that whatever you do, they can be re-assembled in the user document if they make sufficient efforts in it.

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -