R
Raphael Jolivet
I dont know, and i dont much like javascript, however, i am told that
the only way to do want i want to do, is with javascript, so here goes.
zoom and cut is the only features i need.
1. the image that need manipulating is places on the server. dont need
js for that ;-)
2. the client has the oppotunity to manipulate the image. cut and zoom.
3. the image i saved on the server.
It sound realy simple, but than again, i know nothing of js ;-)
Hope to get the help i need.
Regards
Hello,
If your project is for intranet and if you can control the
browser people are using, you may have a look at the new
"canvas" element. This is a WHATWG specification
[http://www.whatwg.org/specs/web-apps/current-work/#scs-dynamic]
And it is supported by Firefox / Safari / Opera : all modern
browsers except IE.
This element enabled you to draw with javascript : Cut /
rotate / move an image and save it as PNG : (with the
toDataURL() method)
You can find some help here
:[http://developer.mozilla.org/en/docs/Drawing_Graphics_with_Canvas]
Just forget it if your audience is the whole Web : It's
always a bad thing the restrict accessibility of a web site.
Raphael