Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 53317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:02:40+00:00 2026-05-10T17:02:40+00:00

This might be an odd question, but when I scale my image in C#

  • 0

This might be an odd question, but when I scale my image in C# I need it to be pixelated and not anti-aliased. Just like in MSpaint when you scale.

I hope images anti-alias by default in C#, or else I changed something I didn’t want to.

I’ve tried playing around with the Graphics.InterpolationMode but no luck there. I’m using a Bitmap object to hold the image and it’s being constructed like so:

// A custom control holds the image this.m_ZoomPanPicBox.Image = new Bitmap(szImagePath); 

And a brief synapsis of the custom control:

class ZoomPanPicBox : ScrollableControl {     Image m_image;     float m_zoom = 1.0f;     InterpolationMode m_interpolationMode;     ...     ////////////////////////////////////////////////////////     public ZoomPanPicBox()     {         //Double buffer the control         this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.UserPaint | ControlStyles.DoubleBuffer, true);          this.AutoScroll=true;     }     ////////////////////////////////////////////////////////     protected override void OnPaint(PaintEventArgs e)     {         //if no image, don't bother         if(m_image==null)         {             base.OnPaintBackground(e);             return;         }          //Set up a zoom matrix         Matrix mx = new Matrix(m_zoom,0,0,m_zoom,0,0);          //now translate the matrix into position for the scrollbars         mx.Translate(this.AutoScrollPosition.X / m_zoom, this.AutoScrollPosition.Y / m_zoom);          //use the transform         e.Graphics.Transform = mx;          //and the desired interpolation mode         e.Graphics.InterpolationMode = m_interpolationMode;          //Draw the image ignoring the images resolution settings.         e.Graphics.DrawImage(m_image,new Rectangle(0,0,this.m_image.Width,this.m_image.Height),0,0,m_image.Width, m_image.Height,GraphicsUnit.Pixel);          base.OnPaint(e);     } 

Any ideas? Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:02:40+00:00Added an answer on May 10, 2026 at 5:02 pm

    Actually, you’re right with InterpolationMode, as the docs say. Just set it to InterpolationMode.NearestNeighbor. In your code sample, you never set m_interpolationMode.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This might seem like a stupid question I admit. But I'm in a small
This might sound like a little bit of a crazy question, but how can
OK, this is an odd request, and it might not even be fully true...
This might be on the discussy side, but I would really like to hear
This might be a bit on the silly side of things but I need
This might be an interesting question. I need to test that if I can
This might be a stupid question but if there's a better or proper way
This might seem obvious but I've had this error when trying to use LINQ
This might be a little hard to explain, but I will try. I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.