combine bitmaps ??
-
Hi, Has anyone made some examples/functions for combining bitmaps? I have one simple program that can seperates a color picture into C,M,Y,K colors picture. Now I want to combine these pictures into one picture under C#, and finally convert it to *.jpg. So anyone knows how to do this process..? THanks for your kindly help..
-
Hi, Has anyone made some examples/functions for combining bitmaps? I have one simple program that can seperates a color picture into C,M,Y,K colors picture. Now I want to combine these pictures into one picture under C#, and finally convert it to *.jpg. So anyone knows how to do this process..? THanks for your kindly help..
How do you mean combine? Simply concatenate images, or alpha blend two images?
-
Hi, Has anyone made some examples/functions for combining bitmaps? I have one simple program that can seperates a color picture into C,M,Y,K colors picture. Now I want to combine these pictures into one picture under C#, and finally convert it to *.jpg. So anyone knows how to do this process..? THanks for your kindly help..
Check out Joe Pardue's tutorial on alpha blending here http://www.codeproject.com/cs/media/CsTranspTutorial1.asp or Rakesh Rajan's article here http://www.codeproject.com/cs/media/alphafx.asp
-
How do you mean combine? Simply concatenate images, or alpha blend two images?
yes.. it is alpha blend images. e.g. I used the simple program to seperate the color image into C,M,Y,K 4 images. They are same, but different color seperation layers Now I wnat to generate a correct color image as same as origion one in C#, and then preview it. I don't know how can I do this blending process.. Can you help me ? Thank you