Adding a file to a bucket on Amazon S3 using C #

How to save a bitmap object as an image on Amazon S3?

I have all the settings, but my limited C-sharp stops me from doing this.

// I have a bitmap iamge
Bitmap image = new Bitmap(width, height);

// Rather than this
image.save(file_path);

// I'd like to use S3
S3 test = new S3();
test.WritingAnObject("images", "testing2.png", image);

// Here is the relevant part of write to S3 function
PutObjectRequest titledRequest = new PutObjectRequest();
titledRequest.WithMetaData("title", "the title")
             .WithContentBody("this object has a title")
             .WithBucketName(bucketName)
             .WithKey(keyName);

As you can see, the S3 function can only accept a string and save it as a file body.

How can I write this so that it allows me to pass in a raster object and save it as an image? Maybe like a stream? Or as an array of bytes?

I appreciate any help.

+5
source share
2 answers

Would you use WithInputStreamor WithFilePath. For example, when saving a new image to S3:

using (var memoryStream = new MemoryStream())
{
    using(var yourBitmap = new Bitmap())
    {
        //Do whatever with bitmap here.
        yourBitmap.Save(memoryStream, ImageFormat.Jpeg); //Save it as a JPEG to memory stream. Change the ImageFormat if you want to save it as something else, such as PNG.
        PutObjectRequest titledRequest = new PutObjectRequest();
        titledRequest.WithMetaData("title", "the title")
            .WithInputStream(memoryStream) //Add file here.
            .WithBucketName(bucketName)
            .WithKey(keyName);
    }
}
+11
source

InputStream :

titledRequest.InputStream = image;
+2

All Articles