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

126
Views
Electron desktopCapturer versión grande de la miniatura

Estoy usando desktopCapturer para tomar y el siguiente código para tomar una captura de pantalla del escritorio.

 takeScreenshot() { desktopCapturer.getSources({ types: ['screen'] }) .then( (sources: { thumbnail: { toDataURL: () => any; }; }[]) => { const theimage = sources[0].thumbnail.toDataURL(); // Thumbnail size image }) }

Mi pregunta es: sources[0].thumbnail.toDataURL() es muy pequeño.

¿Se puede hacer grande o la versión grande de la imagen está en algún lugar de las fuentes?

Si es así, ¿dónde o cómo?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Puede pasar thumbnailSize como una configuración para getSources() .

https://www.electronjs.org/docs/latest/api/desktop-capturer#methods

 takeScreenshot() { desktopCapturer.getSources({ types: ['screen'], thumbnailSize: { width: 800, height: 600 }) .then( (sources: { thumbnail: { toDataURL: () => any; }; }[]) => { const theimage = sources[0].thumbnail.toDataURL(); // Thumbnail size image }) }
about 4 years ago · Juan Pablo Isaza Report
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!