Report this

What is the reason for this report?

uploading image/jpeg in space

Posted on June 4, 2018

I cant figure how to upload an image in space with metadata image/jpeg. I tried everything and that’s is not working. File is always showing as “application/octet-stream” in space.

I did this :
$this->getClient()->upload($this->getBucket(), $fileName, $content, $privacy, [ ‘Metadata’ => [‘contentType’ => ‘image/jpeg’] ]);



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

This works for me, you may want ‘Source’ instead of ‘Body’ depending on its format:

$result = $s3_client->putObject( array( ‘Bucket’ => $bucket_name, ‘Key’ => $fileName, ‘Body’ => $content, ‘ACL’ => ‘public-read’, // or ‘private’, ‘public-read-write’, etc. ‘ContentType’ => ‘image/jpeg’ ));

I haven’t tried all s3 options, but here is the reference for putObject(): https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-s3-2006-03-01.html#putobject

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.