G Guest Mar 24, 2005 #1 I want to create a new big image from other Images in VB .net Is that possible ? what should I need to do that Regards Aris
I want to create a new big image from other Images in VB .net Is that possible ? what should I need to do that Regards Aris
K Ken Tucker [MVP] Mar 24, 2005 #2 Hi, Resize image http://www.bobpowell.net/changing_resolution.htm Drawing on image http://www.bobpowell.net/modifyImage.htm Ken ---------------------------- I want to create a new big image from other Images in VB .net Is that possible ? what should I need to do that Regards Aris
Hi, Resize image http://www.bobpowell.net/changing_resolution.htm Drawing on image http://www.bobpowell.net/modifyImage.htm Ken ---------------------------- I want to create a new big image from other Images in VB .net Is that possible ? what should I need to do that Regards Aris
G Guest Mar 24, 2005 #3 Ken, Thanks for your quick reply but the examples that you have given me are for inputing graphics into an image. What I am trying to fing is how to create a new jpg file that will contain 8 smallers pictures that I have . (like an index of pictures) Regards Aris
Ken, Thanks for your quick reply but the examples that you have given me are for inputing graphics into an image. What I am trying to fing is how to create a new jpg file that will contain 8 smallers pictures that I have . (like an index of pictures) Regards Aris
B Bob Powell [MVP] Mar 24, 2005 #4 Create an image of the desired size: dim bm as new Bitmap(1024,768) Get a Graphics object for it... dim g as Graphics=Graphics.FromImage(bm) Draw your images onto the new one using g.DrawImage and the positions. You can then save the image or use it directly. -- Bob Powell [MVP] Visual C#, System.Drawing Find great Windows Forms articles in Windows Forms Tips and Tricks http://www.bobpowell.net/tipstricks.htm Answer those GDI+ questions with the GDI+ FAQ http://www.bobpowell.net/faqmain.htm All new articles provide code in C# and VB.NET. Subscribe to the RSS feeds provided and never miss a new article.
Create an image of the desired size: dim bm as new Bitmap(1024,768) Get a Graphics object for it... dim g as Graphics=Graphics.FromImage(bm) Draw your images onto the new one using g.DrawImage and the positions. You can then save the image or use it directly. -- Bob Powell [MVP] Visual C#, System.Drawing Find great Windows Forms articles in Windows Forms Tips and Tricks http://www.bobpowell.net/tipstricks.htm Answer those GDI+ questions with the GDI+ FAQ http://www.bobpowell.net/faqmain.htm All new articles provide code in C# and VB.NET. Subscribe to the RSS feeds provided and never miss a new article.
G Guest Mar 24, 2005 #5 Bob Thanks, I will try it right away I suppose that I can sue a for ..next to get all what I want Regards Aris
Bob Thanks, I will try it right away I suppose that I can sue a for ..next to get all what I want Regards Aris
G Guest Mar 24, 2005 #6 Thanks again It worked fine. Now I have to figure out the right positions that I have to compute in the new file. Thanks again. Aris
Thanks again It worked fine. Now I have to figure out the right positions that I have to compute in the new file. Thanks again. Aris