ExaminorOriginal post
Rank 2: Process
I want a reduced quality of image but not getting it, still getting original image
JavaScript
async getFilePreview(fileId : string){ try { const fileUrl = await this.storage.getFilePreview(conf.BUCKET_ID, fileId, 2000,2000,'top',10 ) return fileUrl } catch (error) { console.log(error); } }```Summary
Developers want to reduce image quality but are still getting the original image when using the provided code.