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 3679208
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:25:57+00:00 2026-05-19T03:25:57+00:00

Possible Duplicate: convert image to Black-White or Sepia in c# I’m writing a C#

  • 0

Possible Duplicate:
convert image to Black-White or Sepia in c#

I’m writing a C# application, that opens an image, and clicking on a button, displays it in only black and white!
I was sure to find a lot of information on the net, but my searches didn’t give me a lot of understandable and useful information.

I have no idea of how to proceed. Does any one have any advice ? Know a tutorial on the net?

  • 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. Editorial Team
    Editorial Team
    2026-05-19T03:25:58+00:00Added an answer on May 19, 2026 at 3:25 am

    I once found a function that converts a bitmap to grayscale

    public void ToGrayScale(Bitmap Bmp)
    {
        int rgb;
        Color c;
    
        for (int y = 0; y < Bmp.Height; y++)
        for (int x = 0; x < Bmp.Width; x++)
        {
            c = Bmp.GetPixel(x, y);
            rgb = (int)Math.Round(.299 * c.R + .587 * c.G + .114 * c.B);
            Bmp.SetPixel(x, y, Color.FromArgb(rgb, rgb, rgb));
        }
    }
    

    The function accepts a bitmap as a parameter, and changes it to its grayscale version.

    I hope this helps.

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

Sidebar

Related Questions

Possible Duplicate: Get image data in Javascript? Convert an image into binary data in
Possible Duplicate: Convert some code from C++ to C I've got some code that
Possible Duplicate: Convert ipad application to iphone. Universal app I created one application which
Possible Duplicate: how to convert image to byte array in java? Hi, Can anybody
Possible Duplicate of Convert jpg image to gif, png & bmp format using PHP
Possible Duplicate: Convert a image to a monochrome byte array I have a monochrome
Possible Duplicate: Converting .EPS to Image in C# How to convert byte array to
Possible Duplicate: Convert a number to the shortest possible character string while retaining uniqueness
Possible Duplicate: How to convert a factor to an integer\numeric without a loss of
Possible Duplicate: How to convert MDB to SQLite in Android I have an MS

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.