William23668 8 Posted April 4, 2024 (edited) Hi Sorry was not clear at first. I need to change Windows 11 desktop colors in real time like those filters: I think I need to change every pixel color like a GPU driver. Can Delphi do that ? where to start ? Is there a library I can use ? Thanks Edited April 4, 2024 by William23668 Share this post Link to post
William23668 8 Posted April 4, 2024 1 hour ago, dwrbudr said: You could try https://www.imageen.com/ Thanks I added more details. I think I need to create something like a driver to change colors at real time Share this post Link to post
Der schöne Günther 316 Posted April 5, 2024 This surely isn't trivial. I once was about to make small tool for inverting the colors of windows that did not support a "dark theme" but I never really got started with it. It seems that you can use the (now deprecated) Magnification API to (selectively) transform colors or run filters on the whole screen (or just selected parts of it like rectangle areas or selected HWNDs): Magnification API overview (Applying Color Effects)| Microsoft Learn There is also its successor, the Desktop Duplication API - Win32 apps | Microsoft Learn which I had only used for grabbing screen data, not manipulating it. So I cannot say if it's a feasible solution for manipulating the colors. 1 Share this post Link to post
William23668 8 Posted April 5, 2024 Thanks @Der schöne Günther This seems similar to what I need but that hard for me https://reshade.me Share this post Link to post
JonRobertson 76 Posted April 5, 2024 22 hours ago, William23668 said: I need to change Windows 11 desktop colors in real time like those filters Colors for the entire desktop, including icons, taskbar, and start menu? Or change only the colors in the desktop wallpaper? Share this post Link to post
William23668 8 Posted April 5, 2024 6 minutes ago, JonRobertson said: Colors for the entire desktop, including icons, taskbar, and start menu? Or change only the colors in the desktop wallpaper? Entire desktop Share this post Link to post