Image resolution tool

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sreedevipd
    New Member
    • Oct 2007
    • 12

    Image resolution tool

    Hi all,

    How can i find out the resolution of an image??Is there any tool available for finding out resolution of an image??

    I'm using C#Asp.net...

    Plz help me...
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    The height and width components are the resolution of the image in pixels.
    If you want it in inches/milimeters I think there are properties in the Bitmap object which tell that.

    Comment

    • sreedevipd
      New Member
      • Oct 2007
      • 12

      #3
      I need to view the image in different resolution...



      Originally posted by Plater
      The height and width components are the resolution of the image in pixels.
      If you want it in inches/milimeters I think there are properties in the Bitmap object which tell that.

      Comment

      • sreedevipd
        New Member
        • Oct 2007
        • 12

        #4
        Hi ,

        I am trying to generate some thumbnails using System.Drawing. Image Class.
        Actually using the GetThumnail method. The question is: How can I get a
        better thumbnail picture? I mean, when the original size is big, for
        example, 800x600 and I generate a small picture (160x120) the quality is
        terrible for a jpeg and even for a gif. How can I get some better
        images? There is another class? There is some resolution properties I can
        set?

        Thank you,

        Sreedevi





        Originally posted by Plater
        The height and width components are the resolution of the image in pixels.
        If you want it in inches/milimeters I think there are properties in the Bitmap object which tell that.

        Comment

        • Plater
          Recognized Expert Expert
          • Apr 2007
          • 7872

          #5
          I think the concept of images is completely lost on you.
          I recomend reading up on images and the way things are displayed.

          If you have to show the same amount of information in 20pixels and you are in 800, data is obviously going to be lost.

          Comment

          Working...