Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

302
Views
Binary data PDF downloading But not displaying any Data : Pure JavaScript

I have binary data, please check this link

I try to download as PDF file and show above data, But file is downloading when I going to open the file I am getting a error as a dialog

We can't open this file
  Something went wrong

here is the code what I tried, So how can I fix this problem

let binaryString = btoa(unescape(encodeURIComponent(above_binary_data)))
    
   let binaryLen = binaryString.length;
    
   let bytes = new Uint8Array(binaryLen);
    
    for (let i = 0; i < binaryLen; i++) {
       let ascii = binaryString.charCodeAt(i);
       bytes[i] = ascii;
    }
    
  let blob = new Blob([bytes], {type: "application/pdf"});
    
  let link = document.createElement('a');
    
  link.href = window.URL.createObjectURL(blob);
  link.download = 'test_pdf';
    
  link.click();

I have use pure HTML file for all these process

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!