JS/jQuery Image Editor

穿精又带淫゛_ 提交于 2019-11-29 13:07:51

问题


has anyone stumbled upon image editor done either in pure JS, or jQuery - that kind like CKEditor has?

I'm looking for piece of code, that adds handles to image, so you can resize it, or even drag image around, as you wish.

Thank you.

Edit: rephrased.


回答1:


Here is wonderful image crop/resize JQuery plugin http://www.cropzoom.com.ar/




回答2:


Yes there are numerous online. Find here. jCrop is exceptional and awesome.




回答3:


The way editors such as tinyMCE and CKEditor do it is like this

<div contenteditable="true" id="div1">
    <img src="tache17.jpg" />
</div>
<a href="javascript:alert(document.getElementById('div1').innerHTML)">gimme html</a>

It's a browser thing not a JS thing. Of course placing the image in the div and making the div contentEditable is done with JS but the resizing handles you are talking about are generated by the browser.
Note I haven't tested this in anything other than firefox




回答4:


if you are looking for croopzoom and the website don't work? look at github -> https://github.com/cropzoom/cropzoom



来源:https://stackoverflow.com/questions/2247712/js-jquery-image-editor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!