Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the C# equivalent of the following Java snippet below:

Drawable image;
URL imageUrl;

imageUrl = new URL(getMyImageUrl(imageNumber));
Bitmap bitmap = BitmapFactory.decodeStream(imageUrl.openStream());
image = new BitmapDrawable(bitmap);

Thanks in advance.

share|improve this question

3 Answers

up vote 3 down vote accepted

A more literal conversion to C# would be:

var imageUrl = new Java.Net.URL(GetMyImageUrl(imageNumber));
var bitmap   = Android.Graphics.BitmapFactory.DecodeStream (imageUrl.OpenStream ());
var image    = new Android.Graphics.Drawables.BitmapDrawable (bitmap);

This is one of the strengths of Mono for Android: the classes and methods mirror the underlying Java platform (with some exceptions) while providing much of the .NET framework, so migrating code from Java to C# should be reasonably straightforward.

share|improve this answer
  using System.Drawing;
  using System.Drawing.Imaging;

  public Bitmap DownloadImage(string imageUrl)
  {
        try
        {
              WebClient client = new WebClient();

              using(Stream stream = client.OpenRead(imageUrl))
              {
                    Bitmap bitmap = new Bitmap(stream);
              }
        }
        catch(Exception)
        {
              //todo: handle me
              throw;
        }

        return bitmap
  }
share|improve this answer
Really? That's not valid C#. Would suggest a using statement for the Stream, losing the private keywords and including the call to getMyImageUrl in the question. Just trying to be helpful – Kieren Johnstone Mar 29 '11 at 12:41
Close() flushes the buffers to the stream also... – Cipi Mar 29 '11 at 12:41
@Kieren whats the problem? – mcabral Mar 29 '11 at 12:42
Flush is something you call on write streams, more to the point – Kieren Johnstone Mar 29 '11 at 12:42
@Kieren oh i see, ill clear it up. i was not trying to provide compile-ready code just general guidelines – mcabral Mar 29 '11 at 12:43
show 2 more comments

Have a look at http://www.dreamincode.net/code/snippet2555.htm . I assumed you would want to use Bitmap. I have never used Drawable in Java, so correct me if I'm wrong.

share|improve this answer
Drawable is android-specific thing. – Vladimir Ivanov Mar 29 '11 at 13:13
Ok but would Bitmap be the equivalent, or was I that far off? – Johann du Toit Mar 29 '11 at 13:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.