I’m trying to display a PDF page with the following code:
<embed
src={processedData}
width="100%"
height="800px"
style={{ border: 'none' }}
type="application/pdf"
/>
processedData is a file converted to base 64, a very large string.
In the Edge browser the file displays fine, but in the Chrome browser I get the attached image.
I’m writing in React js.
I’ve tried many of the solutions suggested here but without success.
I’d appreciate some help. Thanks!