This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FindInPic プライバシーポリシー | |
FindInPic(以下「当アプリ」)をご利用いただき、ありがとうございます。当アプリは、ユーザのプライバシーを最優先に考え、個人情報の保護に努めています。本プライバシーポリシーは、当アプリがどのようにユーザの情報を取り扱うかについて説明しています。 | |
1. 情報の収集 | |
当アプリは、ユーザの個人情報を収集しません。ユーザが当アプリを利用する際に提供する情報は、すべてユーザのデバイス内で処理され、外部サーバーに送信されることはありません。 | |
2. 情報の利用 | |
当アプリは、ユーザの情報を以下の目的で利用します: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WIDTH = 400; | |
const HEIGHT = 300; | |
const MAX_RADIUS = HEIGHT / 2; | |
// canvas要素を作る | |
const canvas = document.createElement('canvas'); | |
canvas.width = WIDTH; | |
canvas.height = HEIGHT; | |
// コンテキストを取得 |