Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I've been playing with this rather spiffing online embeddable image editor from Aviary, and it does exactly what I need it to, namely:
embeddable in my site as HTML/JS
reasonably priced
only basic, fun features
completely idiot proof so even the most ham-fisted can thrash their way to something passable; or to put it another way, I don't want/need a traditional image editing interface like Photoshop - the way that Aviary have done it is pretty much spot on for my needs
However, in the documentation, they indicate that this is only suitable for web-resolution images, while I need to allow users to edit hi-res images as they will eventually be sent to a printer.
Does anyone know of anything comparable to this Aviary editor that can work with hi-res images?
Have you tried pixlr? As far as I'm aware, that editor is hi-res-capable.
In answer to my own question, it turns out that if you pay for the Enterprise version of the software, then full resolution is supported.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I want to screen record my users usage that will be embeded in my react code, this is private company website.
MediaStream Recording of mozila is "asking" for premission to get record.
there is any solution for that?
Edit:
I want it to be "behind the scenes", I dont want to bother the agents with not relevant clicks on their system
I'm using it for catching bugs for developing purposes. they say "X doent work for me" I want to visit their flow to improve the development.
Yes, it's certainly possible.
eg. https://www.inspectlet.com/ does this, and doesn't require special permissions.
They basically work by capturing DOM mutations.
There are Open Source alternatives too. eg. https://github.com/Pernosco/DOMRec
They might be legal issues to consider, but in theory capturing the DOM mutations of your own website I wouldn't expect would cause many issues, especially if this is for Debugging or Internal reasons.
Capturing more than your own website, would of course require special permissions, like MediaStream Recording can do as this could capture more than your own website.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I recently decided to use google maps with overlays to display some custom maps in the entire body of my web-page but I'm afraid google maps is a bit too much than what I need. I basically just need to place objects on a canvas, then zoom and pan that canvas. I tried patching something together myself but realized that things became complicated quite fast. So I'm wondering if there is some sort of library to help me out with my problem?
I have heard of kinetic.js but it seems to be a bit outdated.
You could try jquery.panzoom
I've personally used the angular variant of this, but it was using the source as this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a solution to convert html element and it's content into image object which I could send with email attachment. Most of the solutions and JavaScript libraries I've found are based on Canvas element (HTML5), but as IE8 doesn't support it - those solutions can't be used. Does anyone have any solutions which could be supported for all browsers from ie8?
I must tell you that I have researched a lot on this and I must tell you that html2canvas is the best among all to get the images of html content.
So you better change your browser.
I am just saying this so that you wont waste much of your valuable time.
Use Html2Canvas for taking screen shot .Its very easy .. just include the html2canvas js files.. you will get from Here
and some simple codes . Refer this -> Click Here
NOTE : Please download the latest release of html2canvas , now its very much improved in new realease , for eg:
1.supports transform images.
2.By far gives better quality images than before.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What are the fundamentals to protect the source codes of commercial HTML/CSS and JavaScript files on their demos in a market?
Come on, please don't mark this question as off-topic as I know I can try to:
Disable the right click.
Disable the [Ctrl + Shift + i].
Disable the [Ctrl + u].
Learn and use a JavaScript obfuscator.
I want to know all the fundamentals to protect my commercial codes as we all need to know.
Is an obfuscator enough for JScript? How about for CSS3 animations and effects?
Any right way to do this? Is there a standard open source or any other tricks for this?
Obfuscating your JS/CSS will be your best bet. If the demo has to work, then those files have to be downloaded to the client's machine.
From then onward, your files are in possession of the client and you can't but just obfuscate those to give the client a hard time to figure your code out.
How can you disable F12 which launches Developer Console? And what about Context Menu key on the keyboard, which can be easily used to circumvent the disabled right click?
If you want fail-proof method, then just don't have a demo at all or have limited options available in it.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have an idea for a CMS enhancement, to extract text information from images (for example, scanned documents), and want to know if there is already anything out there to help me along?
Basically, I want to know if there is an existing OCR script written in JavaScript that can extract sentences/words from an image (using canvas, for example).
I know there are some scripts that do relatively small tasks such as captcha-cracking, but I haven't yet come across a script for extracting full sentences.
Is there such a thing, or would I need to write it from scratch?
Antimatter15's Ocrad.js is a possibility
Take a look at https://github.com/selead/node-ocr. It's a CoffeeScript libray to access ABBYY Cloud OCR SDK service.
There is a tesseract module for node.js available on github.