Project Source Download: http://download.csdn.net/detail/mostone/6360007

[csharp] view
plain
 copy

  1. public partial class FormMain : Form
  2. {
  3. Bitmap bmpZoom = null;
  4. Bitmap bmpSrc = null;
  5. public FormMain()
  6. {
  7. InitializeComponent();
  8. }
  9. private void button1_Click(object sender, EventArgs e)
  10. {
  11. try
  12. {
  13. DialogResult isDone = openFileDialog1.ShowDialog();
  14. if (isDone == DialogResult.OK)
  15. {
  16. pictureBox1.Image = null;
  17. pictureBox2.Image = null;
  18. bmpSrc = null;
  19. bmpZoom = null;
  20. Image img = Bitmap.FromFile(openFileDialog1.FileName);
  21. pictureBox1.Image = img;
  22. bmpSrc = new Bitmap(img);
  23. }
  24. }
  25. catch (Exception ex)
  26. {
  27. pictureBox1.Image = null;
  28. bmpSrc = null;
  29. MessageBox.Show(ex.Message);
  30. }
  31. }
  32. private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
  33. {
  34. const int zoomSize = 8;
  35. if (this.bmpSrc == null)
  36. {
  37. return;
  38. }
  39. bmpZoom = null;
  40. bmpZoom = new Bitmap(pictureBox2.Width, pictureBox2.Height);
  41. Graphics grpDst = Graphics.FromImage(bmpZoom);
  42. // zoom to 8x
  43. int width = pictureBox2.Width / zoomSize;
  44. int height = pictureBox2.Height / zoomSize;
  45. int offsetX = width / 2;
  46. int offsetY = height / 2;
  47. int x = e.X - offsetX;
  48. int y = e.Y - offsetY;
  49. if (offsetX + e.X >= bmpSrc.Width)
  50. {
  51. x = bmpSrc.Width - offsetX * 2;
  52. }
  53. else if (x < 0)
  54. {
  55. x = 0;
  56. }
  57. if (offsetY + e.Y >= bmpSrc.Height)
  58. {
  59. y = bmpSrc.Height - offsetY * 2;
  60. }
  61. else if (y < 0)
  62. {
  63. y = 0;
  64. }
  65. Color color;
  66. int oriX = x;
  67. for (int row = 0; row < pictureBox2.Height; row += zoomSize)
  68. {
  69. if (y >= bmpSrc.Height) break;
  70. for (int col = 0; col < pictureBox2.Width; col += zoomSize)
  71. {
  72. if (x >= bmpSrc.Width) break;
  73. // get pixel color
  74. color = bmpSrc.GetPixel(x, y);
  75. // draw zoom block
  76. grpDst.FillRectangle(new SolidBrush(color), col, row, zoomSize, zoomSize);
  77. x++;
  78. }
  79. x = oriX;
  80. y++;
  81. }
  82. pictureBox2.Image = bmpZoom;
  83. }
  84. private void pictureBox2_MouseClick(object sender, MouseEventArgs e)
  85. {
  86. if (bmpZoom == null) return;
  87. Color color = bmpZoom.GetPixel(e.X, e.Y);
  88. labelColor.BackColor = color;
  89. String val = color.ToArgb().ToString("X");
  90. textBox1.Text = "#" + val.Substring(2);
  91. textBox2.Text = "#" + rgb565FromColor(color).ToString("X");
  92. textBox3.Text = "#" + rgb565PFromColor(color).ToString("X");
  93. }
  94. private int rgb565FromColor(Color color)
  95. {
  96. int val = color.B >> 3 << 11;
  97. val |= color.G >> 2 << 5;
  98. val |= color.R >> 3;
  99. return val;
  100. }
  101. private int rgb565PFromColor(Color color)
  102. {
  103. int val = color.R >> 3 << 11;
  104. val |= color.G >> 2 << 5;
  105. val |= color.B >> 3;
  106. return val;
  107. }
  108. private void button2_Click(object sender, EventArgs e)
  109. {
  110. MessageBox.Show(@"Image Color Picker
  111. by mostone@hotmail.com
  112. http://blog.csdn.net/mostone
  113. 2013-10-06", "About...");
  114. }
  115. }

C# 获取图片某像素点RGB565值的更多相关文章

  1. js 获取图片url的Blob值并预览

    1)使用 XMLHttpRequest 对象获取图片url的Blob值 //获取图片的Blob值 function getImageBlob(url, cb) { var xhr = new XMLH ...

  2. PHP获取图片每个像素点

    PHP获取图片每个像素点<pre> $i = imagecreatefromjpeg("test.jpg"); //图片路径 for ($x = 0; $x < ...

  3. OpenCV获取与设置像素点的值的几个方法

    Title: OpenCV OpenCV像素值的获取与设置 Fn 1 : 使用 Mat 中对矩阵元素的地址定位的知识 (参考博文:OpenCV中对Mat里面depth,dims,channels,st ...

  4. cocos2d-x 获取图片的某像素点的RGBA颜色 -转

    cocos2d-x 获取图片的某像素点的RGBA颜色  原文:http://www.cnblogs.com/jaoye/archive/2013/02/19/2916501.html 没做过 太多的图 ...

  5. python opencv 读取图片 返回图片某像素点的b,g,r值

    转载:https://blog.csdn.net/weixin_41799483/article/details/80884682 #coding=utf-8   #读取图片 返回图片某像素点的b,g ...

  6. php获取图片RGB颜色值的例子

    php获取图片RGB颜色值的例子 很多图片站点都会根据用户上传的图片检索出图片的主要颜色值,然后在通过颜色搜索相关的图片. 之前按照网上的方法将图片缩放(或者马赛克)然后遍历每个像素点,然后统计处RG ...

  7. atitit.图片相似度与图片查找的设计 获取图片指纹

    atitit.图片相似度与图片查找的设计. 1. 两张图片相似算法 1 2. DCT(离散余弦变换(DiscreteCosineTransform))编辑 2 3.  编辑距离编辑 3 4. Java ...

  8. C#获取图片的后缀名

    最近在学习过程中遇到一个问题,就是如何获取图片的格式,对于一张知道全路径的照片,如果其路径包含后缀名的话,要取得后缀名,只需要一行代码即可: var ext = System.IO.Path.GetE ...

  9. js和jquery如何获取图片真实的宽度和高度

    按照插入的图片的尺寸来判断图片是横图还是竖图.然后判断过后给予不同的展示方式,下面为大家介绍下js和jquery如何获取图片真实的宽度和高度   1.什么时候需要获取图片真实的宽度和高度 在做pc网页 ...

随机推荐

  1. window 下安装并启动zookeeper

    1.下载zookeeper压缩包并解压大到磁盘中: 2.进入解压文件的: 3.进入conf,修改配置文件如下: 4.启动: 启动完成:

  2. mysql基础(5)-关联(mysql+pandas)

    表关联类型 内连接: 仅显示满足条件的行 From T1,T2 where T1.ID=T2.ID From T1 inner join T2 ON T1.ID=T2.ID 左连接: 显示左表T1中的 ...

  3. File类之在指定目录中查找文件

    package IoDemo; import java.io.File; /** * @Title:FileDemo2 * @Description:在指定的目录中查找文件 * @author Cra ...

  4. SPOJ1825 FTOUR2 - Free tour II

    本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000 作者博客:http://www.cnblogs.com/ljh2000-jump/ ...

  5. Java编程思想 Random(47)

    Random类包含两个构造方法,下面依次进行介绍:1. public Random()该构造方法使用一个和当前系统时间对应的相对时间有关的数字作为种子数,然后使用这个种子数构造Random对象.2. ...

  6. jsp中的<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>

    <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+ ...

  7. 如何手动添加 WIFI 网络步骤

    电脑手动添加WiFi网络步骤: 1.右键控制面板 2.进入控制面板 3.进入网络和Internet,点击设置新的连接或网络 4.点击手动连接到无线网络 5.输入网络SSID及秘钥 若需要自动连接请勾选 ...

  8. Ceph的现状

    转自:https://www.ustack.com/blog/ceph-distributed-block-storage/ 1. Ceph简介 Ceph是统一分布式存储系统,具有优异的性能.可靠性. ...

  9. Idea_学习_09_Idea 方法自动生成参数默认名

    一.方法 1.快捷键 生成方法后,还空着参数,可以使用 ctrl + alt + 空格 ,列出参数,然后选择参数即可. 2.使用插件 二.参考资料 1.Intellij Idea 方法自动生成参数默认 ...

  10. LeetCode OJ:Maximum Depth of Binary Tree(二叉树最大深度)

    Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the long ...