Possible operations on image using C#

hi,

what are all the possible operation that we can do on the image using the C# language.

And please specify the "classes and functions" to do that operation

thanks in advance,

singam.



Answer this question

Possible operations on image using C#

  • Dan Fergus

    Clipping/zooming/resizing yes. However you should note that these are very basic operations. Your Image quality loss may be more significant then if you used some enterprise class Image manipulation library such as Pegasus which is designed for designing applications like Photoshop and the likes. There are samples on CodeProject on doing Image Inversion, removing red eye and other neat little filters using GDI and GDI.NET


  • Artmark

    hi,

    is there any buit-in functions for image zooming, inverting. clipping etc


  • Herru Perdana

    What resolution is the map that you are zooming on Rmemeber if it's not super high resolution and it's not a Scalable Vector image you very well may experience alot of jaggedness.

  • rajesh_batchu

    Hello Chee Kiang. For the best results when you have a new and different question you should post a new question in the correct category. This way more people will see your question. Thanks.

  • corne_mo

    Hi,

    I need to implement zooming and panning function on a map in jpeg format. Is it possible for you to show an example of how we can make use of these existing functions

    Thanks

    Chee Kiang


  • Matthew Langley

    System.Drawing.Graphics
    You can do just about everything from drawing shapes, to text, to image manipulation, to painting with bushes and colors.
    Other classes you will use along the way include SolidBrush, Brush, Pen, Color etc
    The System.Drawing namespace will be your friend along this path.Hope this helps. Let us know if you have any further questions.

  • lushdog

    Hmm i got that portion sorted out.Now, I need to be able to move my mouse around the picture box (displaying the map) and at the same time display the coordinates of my mouse cursor. How can this be done

    Regards

    Chee Kiang


  • Possible operations on image using C#