I've written a small app which downloads a file from the internet then parses it.
If the file cannot be downloaded, the execption is caught and it calls its self again for another try. (however, this will go on forever)
i'm using for example
public static void getFile()
{
string fileToGet =...
I'm now using a bmp and I've got this so far which works however, the arrow is not being displayed correctly. It's being resized for some reason... any ideas ??
public static void updateWeatherMap ()
{
Graphics g;
Image weatherMap = Image.FromFile...
Hi
I'm tryting to create a weather map. Currently, I have two images, the map and an arrow to show wind direction.
I would like to use C# to load the map image(bmp) as a background then paste the arrow on top of the map.
The arrow is currently a png with transparency.
Is this possible ...
hi
I would like to load an image from file, draw on it and save it as a different file. Something like this....
public static void updateWeatherMap ()
{
Image weatherMap = Image.FromFile (@"outputMap/weathermap.gif");
Pen bluePen = new Pen (Color.Blue, 3);
//this is the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.