Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Canvasの面積が広すぎてiPhoneのSafariだけ表示できなかった

Posted at

iPhoneのSafariだけ canvas が表示できなかった

開発中のWebサイトをiPhoneのSafariで確認したところ、 canvas の部分が正常に表示されていませんでした。

WindowsやMacのブラウザでは正常に表示されます。

実機デバッグで確認したところ、コンソールに以下のエラーが表示されていました。

スクリーンショット 2019-09-25 14.48.38.png
Canvas area exceeds the maximum limit (width * height > 16777216).

Canvasの面積が最大限度を超えているようです。

ちなみに、MacとiPhoneを接続すれば、iPhoneのSafariのコンソールを見ることができます。
詳細は以下の記事にまとめました。
iPhoneのSafariで表示しているページをMacのSafariでデバッグする

canvas の面積が広すぎて表示できなかった。

PCのブラウザで canvas の面積を計算したところ、

  • width: 9,931
  • height: 1,760

であり、 width * height = 17,478,560‬ となり、見事に 16,777,216 をオーバーしていましたw

スクロールする前提で、広い canvas を用意していたのですが、そういった使い方はダメだったようです。

width, heightの値を小さくしたところ、ちゃんとiPhoneのSafariでも表示されました。

さいごに

何事にも限度というものがありますね!

7
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?