As of right now I can import multiple images from a folder, into multiple PictureBoxes that I can drag and drop, and I need to overlay them and make them fit together. For that I would need a way to change opacity so I can line them up properly, similar to Photoshop layers. Is there any way of achieving that?
Asked
Active
Viewed 94 times
0
-
1How are you displaying the image on the form? Does that control have an Opacity property? – gunr2171 Apr 09 '22 at 23:41
-
1You'll have to combine [this Custom Control](https://stackoverflow.com/a/51435842/7444103) (as you can see in the sample animation, it's translucent and it can overlap other Controls) with [this method](https://stackoverflow.com/a/61293719/7444103) to change the opacity of a Bitmap. If I understand correctly what you're trying to do. – Jimi Apr 09 '22 at 23:47
-
Please provide enough code so others can better understand or reproduce the problem. – Community Apr 10 '22 at 02:51
-
This would be easier in WPF – John V Apr 10 '22 at 06:48