C++ GDI+ 修改像素颜色的问题请教

chi0225 2018-11-14 05:26:55
我用GDI+ 绘制了一个圆形, 然后我想修改这个圆里像素的颜色, 我试过用bitmap的setpixel,发现没有效果, 怎样才能像GDI那样可以直接用setpixel修改某个坐标点的颜色啊? 是不是Bitmap初始化不对啊?
Bitmap bmp(rect.Width, rect.Height, m_graphics);//rect是准备绘制的圆形
我用这个bitmap.setpixel然后用drawimage没效果
...全文
218 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
chi0225 2018-11-16
  • 打赏
  • 举报
回复
引用 6 楼 zhao4zhong1 的回复:
#include <windows.h>
#include <gdiplus.h>
using namespace Gdiplus;
#pragma comment(lib, "gdiplus.lib")
#pragma comment(lib, "user32.lib")
#pragma comment(lib, "gdi32.lib")
VOID OnPaint(HDC hdc) {
Graphics graphics(hdc);
Pen pen(Color(255, 0, 0, 255));
SolidBrush solidBrush(Color(255, 0, 0, 255));

graphics.FillRectangle(&solidBrush, 200, 100, 1, 1);//相当于SetPixel(200,100,Color(255, 0, 0, 255)),实测有效
// graphics.DrawLine(&pen, 200, 100, 200, 100);//相当于SetPixel(200,100,Color(255, 0, 0, 255)),实测无效
// graphics.DrawLine(&pen, 200, 100, 201, 100);//(200,100)和(201,100)都变蓝,也无效
graphics.DrawLine(&pen, 195, 102, 205, 102);
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
HDC hdc;
PAINTSTRUCT ps;

switch(message) {
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
OnPaint(hdc);
EndPaint(hWnd, &ps);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
}
INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, PSTR, INT iCmdShow) {
HWND hWnd;
MSG msg;
WNDCLASS wndClass;
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;

GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);

wndClass.style = CS_HREDRAW | CS_VREDRAW;
wndClass.lpfnWndProc = WndProc;
wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = 0;
wndClass.hInstance = hInstance;
wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wndClass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndClass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
wndClass.lpszMenuName = NULL;
wndClass.lpszClassName = TEXT("GettingStarted");

RegisterClass(&wndClass);

hWnd = CreateWindow(
TEXT("GettingStarted"), // window class name
TEXT("Getting Started"), // window caption
WS_OVERLAPPEDWINDOW, // window style
CW_USEDEFAULT, // initial x position
CW_USEDEFAULT, // initial y position
CW_USEDEFAULT, // initial x size
CW_USEDEFAULT, // initial y size
NULL, // parent window handle
NULL, // window menu handle
hInstance, // program instance handle
NULL); // creation parameters

ShowWindow(hWnd, iCmdShow);
UpdateWindow(hWnd);

while(GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}

GdiplusShutdown(gdiplusToken);

return 0;
}
谢谢啊
赵4老师 2018-11-15
  • 打赏
  • 举报
回复
#include <windows.h>
#include <gdiplus.h>
using namespace Gdiplus;
#pragma comment(lib, "gdiplus.lib")
#pragma comment(lib, "user32.lib")
#pragma comment(lib, "gdi32.lib")
VOID OnPaint(HDC hdc) {
Graphics graphics(hdc);
Pen pen(Color(255, 0, 0, 255));
SolidBrush solidBrush(Color(255, 0, 0, 255));

graphics.FillRectangle(&solidBrush, 200, 100, 1, 1);//相当于SetPixel(200,100,Color(255, 0, 0, 255)),实测有效
// graphics.DrawLine(&pen, 200, 100, 200, 100);//相当于SetPixel(200,100,Color(255, 0, 0, 255)),实测无效
// graphics.DrawLine(&pen, 200, 100, 201, 100);//(200,100)和(201,100)都变蓝,也无效
graphics.DrawLine(&pen, 195, 102, 205, 102);
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
HDC hdc;
PAINTSTRUCT ps;

switch(message) {
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
OnPaint(hdc);
EndPaint(hWnd, &ps);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
}
INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, PSTR, INT iCmdShow) {
HWND hWnd;
MSG msg;
WNDCLASS wndClass;
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR gdiplusToken;

GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);

wndClass.style = CS_HREDRAW | CS_VREDRAW;
wndClass.lpfnWndProc = WndProc;
wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = 0;
wndClass.hInstance = hInstance;
wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wndClass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndClass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
wndClass.lpszMenuName = NULL;
wndClass.lpszClassName = TEXT("GettingStarted");

RegisterClass(&wndClass);

hWnd = CreateWindow(
TEXT("GettingStarted"), // window class name
TEXT("Getting Started"), // window caption
WS_OVERLAPPEDWINDOW, // window style
CW_USEDEFAULT, // initial x position
CW_USEDEFAULT, // initial y position
CW_USEDEFAULT, // initial x size
CW_USEDEFAULT, // initial y size
NULL, // parent window handle
NULL, // window menu handle
hInstance, // program instance handle
NULL); // creation parameters

ShowWindow(hWnd, iCmdShow);
UpdateWindow(hWnd);

while(GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}

GdiplusShutdown(gdiplusToken);

return 0;
}
chi0225 2018-11-15
  • 打赏
  • 举报
回复
引用 4 楼 zhao4zhong1 的回复:
结帖就可以给分。

现在有一个问题,这个像素长是怎么计算的啊, 我查了下百度不太理解
赵4老师 2018-11-15
  • 打赏
  • 举报
回复
结帖就可以给分。
chi0225 2018-11-15
  • 打赏
  • 举报
回复
引用 1 楼 zhao4zhong1 的回复:
用DrawLine画一个像素长的线段。


想给你分,但不知道怎么给
chi0225 2018-11-15
  • 打赏
  • 举报
回复
引用 1 楼 zhao4zhong1 的回复:
用DrawLine画一个像素长的线段。

谢谢,起点和终点都是同一个坐标吗?
赵4老师 2018-11-15
  • 打赏
  • 举报
回复
用DrawLine画一个像素长的线段。

15,440

社区成员

发帖
与我相关
我的任务
社区描述
C/C++ 非技术区
社区管理员
  • 非技术区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧