Results 1 to 5 of 5

Thread: Image coming out the wrong size...

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    15

    Unhappy Image coming out the wrong size...

    Hello once again everyone. I'm just a newbie C# programmer with a problem...

    Essentially through my code I have set the Image property of a picturebox to a .png file. I then allow the user to select an image and place it on top of this image, which I did utilizing the Graphics.DrawImage function.

    Well...I was testing this out and everything works great, except certain images I draw come out larger then they actually are (they are proportionately stretched). This only happens to certain image files, and always for those image files. If I set the picturebox's image property to these images they are of correct size...

    Any clues as to why this is happening?
    Nightmare

  2. #2
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682
    Have you tried DrawImageUnscaled()?

  3. #3
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682
    Can you post your code so we can have a look?
    I don't live here any more.

  4. #4

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    15

    code

    I replicated the problem in a new project to make it easier to tackle...
    All I did was place a picturebox on the form, and set it's image property to the desired image.

    I then coded the picturebox click event as such:

    Code:
    private void pictureBox1_Click(object sender, System.EventArgs e)
    {
      Graphics g = pictureBox1.CreateGraphics();
      g.DrawImageUnscaled(pictureBox1.Image, 20, 20);
    }
    Nightmare

  5. #5

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    15

    oh and here

    Here is the image file I used as well..

    Hopefully this problem is not only on my end.
    Attached Images Attached Images  
    Nightmare

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width