Picture in picture

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
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.
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top