JS framework for image editing

Asked

Viewed 65 times

-1

Good morning,

Does anyone know any JS framework where I select some image and make edits upon it?

For example, add some arrows, markup, etc.

1 answer

0

There are many ways to do this, and you probably won’t find one that does everything you want, the way you want it, what you can do, is take one that does little and improve/adjust to your need.

One you can use is the Studiojs which is very simple to use.

<div class="studio1" ></div>

<script>

        $(function () {
            $('div.studio1').ImageStudio({ url: '/image.jpg?width=900' });
        });

    </script>
  • I’ve seen this one, but what I need is not something too complex. Just need to upload a photo, give to add some arrows (to point something) and you can write a comment. I don’t need editing, image cropping, nothing like that.

  • So you can do this on the nail and then generate an image on top of everything you’ve done. I’ll make a simple example.

  • Oops, I’d appreciate it if you made an example =)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.