Jonathan Stern

Results 8 issues of Jonathan Stern

Here is my convertHeic function: ``` export async function convertHeic(heicFile: File) { const heic2any = require("heic2any"); const convertedBlob = await heic2any({ blob: heicFile }); const convertedFile = new File([convertedBlob], `${uuidv4()}.png`,...

Trying to launch my puppeteer browser and continue running into this error. Node version: 14 puppeteer-extra: ^3.3.6 puppeteer-extra-plugin-stealth: ^2.11.2 Apple M1 Pro - Venture 13.2.1 Any thoughts? ``` error: Error:...

issue: bug report
needs triage

``` const dataUrl = await htmlToImage.toPng(photoContainer, { quality: 1, pixelRatio: 5, cacheBust: true, }); ``` Works on desktop. Fails on mobile (just showing white background).

bug

I know this has come up many times here. Is there an accepted solution? I'm thinking about using https://github.com/awl19/heroku-buildpack-google-chrome. @awl19

I’m using this library for a photo drag-n-drop grid in a production environment. Some users have >500 photos. I switched to this library because it is much more performant than...

Any ideas on why my app won't deploy? Build is succeeding -- deploy is failing. Here are my requirements.txt. ``` -f https://download.pytorch.org/whl/torch_stable.html Django==4.1.4 djangorestframework==3.14.0 requests==2.28.1 whisper==1.0 django-cors-headers==3.13.0 psycopg2==2.9.5 gunicorn==20.1.0 dj-database-url>=1.0,=6.0,

Switched to this library because is was far more reliable than `html-to-image` and `html2canvas`, but now it's failing with REALLY large images. Anything I can do?

I think html2canvas is scanning the whole DOM and reading the video data, which causes them to start playing aloud. I need it to skip the video elements, as (1)...