How to display image in web platform stored on server
I'm using
/v2/content/{id}/download
I'm getting bytes data which is visible in network preview tab, but not able to convert it in some format so that it can be passed to src attribute of image to make it visible on my web application. I have tried many solutions but nothing working.
Best Answer
-
Hello @Akash Gadhave ,
In Axios, you need to specify the responseType (otherwise it will default to JSON). You can use responseType arrayBuffer or blob.
For example, I used responseType: 'blob' in my code, and then with the response (res), I used a reader to set the base64 image like this:
if (res.data) {
let reader = new FileReader();
reader.readAsDataURL(res.data);
reader.onload = function () {
const regex = /data:.*base64,/
imageData = reader.result.replace(regex,""));
};
reader.onerror = function (error) {
console.log(`File reading error: ${error.message}`);
};
}Then, in the img block, used the imageData:
<img src={`data:image/png;base64, ${imageData}`} alt='Instance diagram' align="center"/>
0
Answers
-
Hi @Akash Gadhave, as far as I'm aware it is not possible to directly inject a response from a protected image file (requiring authorization headers) in the src attribute of an image element/component.
I've quickly looked this up to verify/confirm my understanding and indeed came across the following Stack Overflow post: https://stackoverflow.com/questions/46642960/authorization-header-in-img-src-link
Did you already see it and tried the different methods (using JavaScript, etc.) they suggest?
0 -
Yes, I have already tried this,
Image is visible in network preview tab, but still is not visible on UI.
0 -
@Akash Gadhave, I will investigate whether what you see is to be expected and we will get back to you. Cheers.
0 -
Hello @Akash Gadhave ,
In Axios, you need to specify the responseType (otherwise it will default to JSON). You can use responseType arrayBuffer or blob.
For example, I used responseType: 'blob' in my code, and then with the response (res), I used a reader to set the base64 image like this:
if (res.data) {
let reader = new FileReader();
reader.readAsDataURL(res.data);
reader.onload = function () {
const regex = /data:.*base64,/
imageData = reader.result.replace(regex,""));
};
reader.onerror = function (error) {
console.log(`File reading error: ${error.message}`);
};
}Then, in the img block, used the imageData:
<img src={`data:image/png;base64, ${imageData}`} alt='Instance diagram' align="center"/>
0 -
Thanks, that worked.
1
Categories
- All Categories
- 122 Developer Announcements
- 53 Articles
- 150 General Questions
- 147 Thrust Services
- 56 OpenText Hackathon
- 37 Developer Tools
- 20.6K Analytics
- 4.2K AppWorks
- 9K Extended ECM
- 918 Cloud Fax and Notifications
- 84 Digital Asset Management
- 9.4K Documentum
- 31 eDOCS
- 184 Exstream
- 39.8K TeamSite
- 1.7K Web Experience Management
- 7 XM Fax
- Follow Categories