Output color by R G B value for a Bitmap

   
 
using System;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;

public class Analyzer {
    public static void Main() {
        Image sample = new Bitmap("a.jpg");
        MemoryStream buf = new MemoryStream();
        sample.Save(buf, ImageFormat.Bmp);
        byte[] currentImage = buf.GetBuffer();
        
        int[] stats = new int[3];
        for (int i = 0; i < currentImage.Length; ){
            for (int j = 0; j < 3; j++) {
                stats&#91;j&#93; += currentImage&#91;i&#93;;
                ++i;
            }
        }    
        Console.WriteLine("Blue: " + stats&#91;0&#93;);
        Console.WriteLine("Green: " + stats&#91;1&#93;);
        Console.WriteLine("Red: " + stats&#91;2&#93;);
        if ((stats&#91;0&#93; > stats[1]) &amp;&amp; (stats[0] > stats[2]))
            Console.WriteLine("This is a cold picture.");
        if ((stats[1] > stats[0]) &amp;&amp; (stats[1] > stats[2]))
            Console.WriteLine("This is a summer picture.");
        if ((stats[2] > stats[0]) &amp;&amp; (stats[2] > stats[1]))
            Console.WriteLine("This is a fiery picture.");
    }
}

    


Try all AnchorStyles

   
 
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

class AnchorForm : System.Windows.Forms.Form {

    public AnchorForm() {
        InitializeComponent();
        CenterToScreen();
    }

    protected void dockNone_Click(object sender, System.EventArgs e) {
        btnTheButton.Dock = DockStyle.None;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void dockFill_Click(object sender, System.EventArgs e) {
        btnTheButton.Dock = DockStyle.Fill;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void dockRight_Click(object sender, System.EventArgs e) {
        btnTheButton.Dock = DockStyle.Right;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void dockLeft_Click(object sender, System.EventArgs e) {
        btnTheButton.Dock = DockStyle.Left;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void dockBottom_Click(object sender, System.EventArgs e) {
        btnTheButton.Dock = DockStyle.Bottom;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void dockTop_Click(object sender, System.EventArgs e) {
        btnTheButton.Dock = DockStyle.Top;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void ancRight_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Right;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void ancBottom_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Bottom;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void ancLeft_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Left;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    protected void ancTop_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Top;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    private void ancNone_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.None;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    private void ancTopLeft_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Top | AnchorStyles.Left;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    private void ancTopRight_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Top | AnchorStyles.Right;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    private void ancBotLeft_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    private void ancBotRight_Click(object sender, System.EventArgs e) {
        btnTheButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
        btnTheButton.Text = "Anchor: " + btnTheButton.Anchor.ToString() +
            "
Dock: " + btnTheButton.Dock.ToString();
    }

    private void InitializeComponent() {
        this.dockRight = new System.Windows.Forms.MenuItem();
        this.dockBottom = new System.Windows.Forms.MenuItem();
        this.ancNone = new System.Windows.Forms.MenuItem();
        this.ancTopLeft = new System.Windows.Forms.MenuItem();
        this.ancTop = new System.Windows.Forms.MenuItem();
        this.dockFill = new System.Windows.Forms.MenuItem();
        this.mnuMainMenu = new System.Windows.Forms.MainMenu();
        this.mnuAnchor = new System.Windows.Forms.MenuItem();
        this.ancLeft = new System.Windows.Forms.MenuItem();
        this.ancBottom = new System.Windows.Forms.MenuItem();
        this.ancRight = new System.Windows.Forms.MenuItem();
        this.ancTopRight = new System.Windows.Forms.MenuItem();
        this.ancBotLeft = new System.Windows.Forms.MenuItem();
        this.ancBotRight = new System.Windows.Forms.MenuItem();
        this.mnuDock = new System.Windows.Forms.MenuItem();
        this.dockTop = new System.Windows.Forms.MenuItem();
        this.dockLeft = new System.Windows.Forms.MenuItem();
        this.dockNone = new System.Windows.Forms.MenuItem();
        this.btnTheButton = new System.Windows.Forms.Button();
        this.SuspendLayout();
        // 
        // dockRight
        // 
        this.dockRight.Index = 3;
        this.dockRight.Text = "Right";
        this.dockRight.Click += new System.EventHandler(this.dockRight_Click);
        // 
        // dockBottom
        // 
        this.dockBottom.Index = 1;
        this.dockBottom.Text = "Bottom";
        this.dockBottom.Click += new System.EventHandler(this.dockBottom_Click);
        // 
        // ancNone
        // 
        this.ancNone.Index = 4;
        this.ancNone.Text = "None";
        this.ancNone.Click += new System.EventHandler(this.ancNone_Click);
        // 
        // ancTopLeft
        // 
        this.ancTopLeft.Index = 5;
        this.ancTopLeft.Text = "TopLeft";
        this.ancTopLeft.Click += new System.EventHandler(this.ancTopLeft_Click);
        // 
        // ancTop
        // 
        this.ancTop.Index = 0;
        this.ancTop.Text = "Top";
        this.ancTop.Click += new System.EventHandler(this.ancTop_Click);
        // 
        // dockFill
        // 
        this.dockFill.Index = 4;
        this.dockFill.Text = "Fill";
        this.dockFill.Click += new System.EventHandler(this.dockFill_Click);
        // 
        // mnuMainMenu
        // 
        this.mnuMainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mnuAnchor,
            this.mnuDock});
        // 
        // mnuAnchor
        // 
        this.mnuAnchor.Index = 0;
        this.mnuAnchor.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.ancTop,
            this.ancLeft,
            this.ancBottom,
            this.ancRight,
            this.ancNone,
            this.ancTopLeft,
            this.ancTopRight,
            this.ancBotLeft,
            this.ancBotRight});
        this.mnuAnchor.Text = "Anchor Value";
        // 
        // ancLeft
        // 
        this.ancLeft.Index = 1;
        this.ancLeft.Text = "Left";
        this.ancLeft.Click += new System.EventHandler(this.ancLeft_Click);
        // 
        // ancBottom
        // 
        this.ancBottom.Index = 2;
        this.ancBottom.Text = "Bottom";
        this.ancBottom.Click += new System.EventHandler(this.ancBottom_Click);
        // 
        // ancRight
        // 
        this.ancRight.Index = 3;
        this.ancRight.Text = "Right";
        this.ancRight.Click += new System.EventHandler(this.ancRight_Click);
        // 
        // ancTopRight
        // 
        this.ancTopRight.Index = 6;
        this.ancTopRight.Text = "TopRight";
        this.ancTopRight.Click += new System.EventHandler(this.ancTopRight_Click);
        // 
        // ancBotLeft
        // 
        this.ancBotLeft.Index = 7;
        this.ancBotLeft.Text = "BottomLeft";
        this.ancBotLeft.Click += new System.EventHandler(this.ancBotLeft_Click);
        // 
        // ancBotRight
        // 
        this.ancBotRight.Index = 8;
        this.ancBotRight.Text = "BottomRight";
        this.ancBotRight.Click += new System.EventHandler(this.ancBotRight_Click);
        // 
        // mnuDock
        // 
        this.mnuDock.Index = 1;
        this.mnuDock.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.dockTop,
            this.dockBottom,
            this.dockLeft,
            this.dockRight,
            this.dockFill,
            this.dockNone});
        this.mnuDock.Text = "Dock Value";
        // 
        // dockTop
        // 
        this.dockTop.Index = 0;
        this.dockTop.Text = "Top";
        this.dockTop.Click += new System.EventHandler(this.dockTop_Click);
        // 
        // dockLeft
        // 
        this.dockLeft.Index = 2;
        this.dockLeft.Text = "Left";
        this.dockLeft.Click += new System.EventHandler(this.dockLeft_Click);
        // 
        // dockNone
        // 
        this.dockNone.Index = 5;
        this.dockNone.Text = "None";
        this.dockNone.Click += new System.EventHandler(this.dockNone_Click);
        // 
        // btnTheButton
        // 
        this.btnTheButton.Location = new System.Drawing.Point(8, 16);
        this.btnTheButton.Name = "btnTheButton";
        this.btnTheButton.Size = new System.Drawing.Size(120, 40);
        this.btnTheButton.TabIndex = 0;
        this.btnTheButton.Text = "The Button";
        // 
        // AnchorForm
        // 
        this.ClientSize = new System.Drawing.Size(480, 155);
        this.Controls.Add(this.btnTheButton);
        this.Menu = this.mnuMainMenu;
        this.Name = "AnchorForm";
        this.Text = "Anchoring and Docking Controls";
        this.ResumeLayout(false);
    }


    private System.Windows.Forms.MenuItem dockNone;
    private System.Windows.Forms.MenuItem dockFill;
    private System.Windows.Forms.MenuItem dockRight;
    private System.Windows.Forms.MenuItem dockLeft;
    private System.Windows.Forms.MenuItem dockBottom;
    private System.Windows.Forms.MenuItem dockTop;
    private System.Windows.Forms.MenuItem mnuDock;
    private System.Windows.Forms.Button btnTheButton;
    private System.Windows.Forms.MenuItem ancRight;
    private System.Windows.Forms.MenuItem ancBottom;
    private System.Windows.Forms.MenuItem ancLeft;
    private System.Windows.Forms.MenuItem ancTop;
    private System.Windows.Forms.MenuItem mnuAnchor;
    private System.Windows.Forms.MenuItem ancNone;
    private System.Windows.Forms.MenuItem ancTopLeft;
    private System.Windows.Forms.MenuItem ancBotRight;
    private System.Windows.Forms.MenuItem ancBotLeft;
    private System.Windows.Forms.MenuItem ancTopRight;
    private System.Windows.Forms.MainMenu mnuMainMenu;
    [STAThread]
    static void Main() {
        Application.EnableVisualStyles();
        Application.Run(new AnchorForm());
    }
}

    


Anchor Left and Top


   


  using System;
  using System.Drawing;
  using System.Collections;
  using System.ComponentModel;
  using System.Windows.Forms;
  using System.Data;

  public class AnchorForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Button button1;

    public AnchorForm()
    {
      InitializeComponent();
      CenterToScreen();
    }
    private void InitializeComponent()
    {
      this.button1 = new System.Windows.Forms.Button();
      this.Controls.AddRange(new System.Windows.Forms.Control[] {this.button1});
      this.Text = "Anchoring (and Docking) Controls";
      
            // anchor left and top
            button1.Anchor = AnchorStyles.Top | AnchorStyles.Left;
      button1.Text = "Anchor: " + button1.Anchor.ToString() + 
        "
Dock: " + button1.Dock.ToString();



    }
    static void Main() 
    {
      Application.Run(new AnchorForm());
    }

  }

           
          


Anchor Style: Bottom


   

  using System;
  using System.Drawing;
  using System.Collections;
  using System.ComponentModel;
  using System.Windows.Forms;
  using System.Data;

  public class AnchorForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Button button1;

    public AnchorForm()
    {
      InitializeComponent();
      CenterToScreen();
    }
    private void InitializeComponent()
    {
      this.button1 = new System.Windows.Forms.Button();
      this.Controls.AddRange(new System.Windows.Forms.Control[] {this.button1});
      this.Text = "Anchoring (and Docking) Controls";
      
            // anchor Bottom
            
      button1.Anchor = AnchorStyles.Bottom;
      button1.Dock = DockStyle.Left;
      button1.Text = "Anchor: " + button1.Anchor.ToString() + 
        "
Dock: " + button1.Dock.ToString();

    }
    static void Main() 
    {
      Application.Run(new AnchorForm());
    }

  }


           
          


Anchor Style: Right


   

  using System;
  using System.Drawing;
  using System.Collections;
  using System.ComponentModel;
  using System.Windows.Forms;
  using System.Data;

  public class AnchorForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Button button1;

    public AnchorForm()
    {
      InitializeComponent();
      CenterToScreen();
    }
    private void InitializeComponent()
    {
      this.button1 = new System.Windows.Forms.Button();
      this.Controls.AddRange(new System.Windows.Forms.Control[] {this.button1});
      this.Text = "Anchoring (and Docking) Controls";
      
            // anchor Right
        
      button1.Anchor = AnchorStyles.Right;
      button1.Text = "Anchor: " + button1.Anchor.ToString() + 
        "
Dock: " + button1.Dock.ToString();
    }
    static void Main() 
    {
      Application.Run(new AnchorForm());
    }

  }