ASP.NET friendly image editor

前端 未结 3 394
慢半拍i
慢半拍i 2021-01-29 00:22

I\'m looking for an image editor that I can embed easily into an ASP.NET website. I need to be able to draw rectangles, lines and add some text. Additionally, images must not be

相关标签:
3条回答
  • 2021-01-29 00:42
    if (sense == 1) //Rotate 90 to right
        {
            img.RotateFlip(RotateFlipType.Rotate270FlipXY);
        }
    
    0 讨论(0)
  • 2021-01-29 00:52

    By 'image editor', do you mean photo editor or drawing application? (Sorry, the 'draw lines and rectangles' thing threw me a little) There's a Silverlight-based photo editor (with text adding capabilities) at http://imago.konnektion.com which can be integrated as an ASP.NET control or directly through HTML code on any web page, with configurable upload destination address - is that something like what you had in mind?

    0 讨论(0)
  • 2021-01-29 01:03

    I think AtalaSoft has and editor that will do what you need.

    0 讨论(0)
提交回复
热议问题