JS Framework for image editing

-1

Good morning,

Does anyone know of any JS framework where I select any image and make edits on it?

For example, add some arrows, markings, etc.

    
asked by anonymous 04.10.2017 / 14:41

1 answer

0

There are several ways you can do this, and you probably will not find one that does everything you want, the way you want it, what you can do, is pick one that does little and improve / adjust to your need .

One that you can use is the StudioJS that is very simple to use.

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

<script>

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

    </script>
    
04.10.2017 / 14:48