Merging image segments into one image
-
I splitted an image into small pieces (segments) and made some functions on them, then now i want to merge (reconstruct) these pieces into one image agian using c#, does anyone know how can I do this? Thank you Mayy Magdy Saad Junior Solutions Developer
-
I splitted an image into small pieces (segments) and made some functions on them, then now i want to merge (reconstruct) these pieces into one image agian using c#, does anyone know how can I do this? Thank you Mayy Magdy Saad Junior Solutions Developer
You can create a new Bitmap (an empty one with known size, or a copy of an existing image), then create a Graphics object for it with Graphics.FromImage then perform whatever drawing operations you want to apply, and maybe end it all with a Bitmap.Save() :)
Luc Pattyn
-
You can create a new Bitmap (an empty one with known size, or a copy of an existing image), then create a Graphics object for it with Graphics.FromImage then perform whatever drawing operations you want to apply, and maybe end it all with a Bitmap.Save() :)
Luc Pattyn
Good anwser :) .. it almost sounds like a breakfast recipe :laugh:
-
Good anwser :) .. it almost sounds like a breakfast recipe :laugh:
Smakelijk !
Luc Pattyn