Weird White Outline Around C# Images

若如初见. 提交于 2021-01-29 08:23:22

问题


I am using an ImageList in C# to display images on buttons dynamically. When I set the image index, it displays the image like so:

Here is the same image in Photoshop:


回答1:


To anyone else who has this problem,

Open all the images in an image editor and replace transparency with something like (255, 0, 255) and in Visual Studio set "Transparency Color" to (255, 0, 255).




回答2:


I had same problem using image with transparent background. Setting appropriate color depth solved the issue.

imageList.ColorDepth = ColorDepth.Depth32Bit;


来源:https://stackoverflow.com/questions/28801793/weird-white-outline-around-c-sharp-images

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!