Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 48*48 的图标文件,我需要在 18*18 的容器中绘制它。我正在使用 DrawIconEx API。
::DrawIconEx(hdc, x, y, hicon, w, h, 0, NULL, DI_NORMAL);
使用上述 API 以扭曲的形式绘制图标。在绘制图标之前是否需要将图标缩放到 18*18,或者是否有更好的 api 来绘制图标。