
I'm running this code:
blah = await storage.getFilePreview(
import.meta.env.NEWS_IMAGES_ID,
news.imageId,
0, // width (optional)
0, // height (optional)
ImageGravity.Center, // gravity (optional)
0, // quality (optional)
0, // borderWidth (optional)
'fff', // borderColor (optional)
0, // borderRadius (optional)
0, // opacity (optional)
-360, // rotation (optional)
'fff', // background (optional)
ImageFormat.Jpg, // output (optional)
)
console.log('we have img: ', blah)
And I get ArrayBuffer { [Uint8Contents]: <ff d8 ff e0 00 10 4a 46 49 46 00 01 01 01 00 48 00 48 00 00 ff db 00 43 00 03 02 02 02 02 02 03 02 02 02 03 03 03 03 04 06 04 04 04 04 04 08 06 06 05 06 09 08 0a 0a 09 08 09 09 0a 0c 0f 0c 0a 0b 0e 0b 09 09 0d 11 0d 0e 0f 10 10 11 10 0a 0c 12 13 12 10 13 0f 10 10 10 ff db 00 43 01 03 03 03 04 03 04 ... 66367 more bytes>, byteLength: 66467 }
The docs seem to indicate I should have a image url

what docs are you referring to?


It says: console.log(result.href);

I guess every image in a bucket has a standard url:
`https://cloud.appwrite.io/v1/storage/buckets/${import.meta.env.NEWS_IMAGES_ID}/files/${news.imageId}/view?project=${import.meta.env.PUBLIC_APPWRITE_PROJECT}`
Recommended threads
- Anonymous accounts flooding auth users
Dear all, I want to implement anonymous user access for my client-side site, however, I am aware that Appwrite has certain quotas around users (200K). Now, I n...
- error: 'Document with the requested ID a...
just as the title says..
- Stripe Payment Webhook Function
I'm seeing this error in console: ``` Error: No signatures found matching the expected signature for payload. Are you passing the raw request body you received ...
