Results 1 to 1 of 1

Thread: [2005] Copying Graphics (making graphics options make image tiny size)

  1. #1

    Thread Starter
    Frenzied Member Icyculyr's Avatar
    Join Date
    Aug 2007
    Location
    Australia
    Posts
    1,934

    [2005] Copying Graphics (making graphics options make image tiny size)

    Ok, currently my images range from 70-120 KB, I would like to get that down even further perhaps 40-50KB

    these are my settings (and I can not change how much of the image is taken)

    vb.net Code:
    1. Dim gfx As Graphics = Graphics.FromImage(bitBuffer)
    2.         gfx.CompositingQuality = Drawing2D.CompositingQuality.GammaCorrected
    3.         gfx.InterpolationMode = Drawing2D.InterpolationMode.Default
    4.         gfx.PixelOffsetMode = Drawing2D.PixelOffsetMode.None
    5.         gfx.SmoothingMode = Drawing2D.SmoothingMode.None
    6.         gfx.TextContrast = 0
    7.         gfx.TextRenderingHint = Drawing.Text.TextRenderingHint.AntiAlias

    the image im saving is a bitmap, and it is gotten from gfx.CopyFromScreen()
    What settings can I set to those, to make the image size smaller, any idea's?
    Thanks
    Last edited by Icyculyr; Dec 5th, 2007 at 06:25 AM.

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