English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

how i have to add a new picture to the existing picture using c#

2007-03-15 00:59:51 · 2 answers · asked by Joby S 1 in Computers & Internet Programming & Design

2 answers

Your Question is too short to give the correct answer.What do you mean by add here? they are not numbers remember?
Do you want :
make a bigger picture from 1? Width wise or lengthwise ?
Wrap one over the other ?

based on your requirement the logic will follow.

2007-03-15 01:07:08 · answer #1 · answered by Satya 3 · 1 0

c# has an Image class that provides heaps of good functionality. you need to create a new Image object. once you have done that you can add other images dynamically and then save that image object as a specified format.

you will want to check out the msdn documentation for the specific syntax and commands since icant recall it off the top of my head, but thats a guide anyway.

Image myImage = new Image();

then something like
myImage.addLayer (or myImage.add) (...you image file here...)

or maybe it is Image myImage = new Image(imageFilename);

somethin glike that anyway. its been a while

2007-03-15 08:10:19 · answer #2 · answered by Anonymous · 1 0

fedest.com, questions and answers