Incompatibility problem - html2Canvas in ios 15

html2canvas library is used in our js project however it leads to white screen after upgrade to ios 15, may i understand what feature in ios15 actually casue that and will it be fixed in later version?

Have same issue. happens only when the html contains Chinese characters.

This is a font bug of new version safari. One solution is overriwite default apple font by adding font-family to your css style. for example:

body {
  font-family:  Helvetica, Tahoma, Arial, sans-serif, 'PingFang SC';
}
Incompatibility problem - html2Canvas in ios 15
 
 
Q