Mobile app version of vmapp.org
Login or Join
Hamaas447

: Protect SVG from client access I want to make a presentation that consists from some number of slides. The actual content of the slides is going to consist of vector elements in SVG format.

@Hamaas447

Posted in: #Javascript #Protection #Svg

I want to make a presentation that consists from some number of slides.
The actual content of the slides is going to consist of vector elements in SVG format.
The transition between slides should be managed with JavaScript.

The question is, whether it is possible to implement this in such way that user can not save the presentation either using simple Save As... or digging into browser's cache?

Also I am thinking about using Raphael (which is JavaScript library) instead of pure SVG. But as far as I know, it's impossible to protect JavaScript from client access since it's meant to run on client side.

So is there any way to get full or some protection from client saving the slides?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamaas447

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

You cannot send data to the client and expect them not to be able to save it.

In your case, it sounds like the SVG images are good enough that you don't want to give them away. Could you render them to a raster format (like png) and include the lower quality png files in your presentation instead?

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme