How to detect if an image generated via canvas is blank (transparent PNG)?

后端 未结 2 1087
一生所求
一生所求 2021-02-05 16:00

I am working on an application in which an image is created/edited on a HTML5 canvas and then saved into a file-store/cloud. The problem is that of \"saving efficiency\". On sav

2条回答
  •  旧时难觅i
    2021-02-05 16:29

    This isn't native, but this should work, because a blank canvas always generates the same data URL.

    So, you could create a hidden canvas, get that canvas's data URL and if it matches that of your editor, then don't upload it. Simple as that.

    Demo. First, go hit save without going over the canvas. Then go over it and then hit save. Tada!

提交回复
热议问题