CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: image compress

  1. #1
    Guest

    image compress

    How can i compress an images size like a .gif or .bmp without losing the picture or its quality? Anyone?


  2. #2
    Join Date
    Jan 2001
    Location
    the Netherlands (Holland), Europe
    Posts
    15

    Re: image compress

    I don't think that's possible.
    What you can try, is: reducing a picture with paintpicture just throws away a lot of pixels. For example, if the size becomes the half, then one on two pixels in a row will be deleted. Instead, you can make a source code which looks at both pixels and makes one new pixel what's in between. But when you then enlarge the picture, it's still not the good quality...

    I think you should just look for a way to save gif or jpg, which is much smaller than bmp.

    Peter Moor

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

Featured