// 写真撮影時のイベント
    void onPhotoCaptured(List <byte> image, int width, int height)
    {
        /// テストパターン
        /// ①QRコードを読んでレスポンスを受け取ってそれを使う(実戦)
        /// ②QRコードを読まずにとりあえず表示だけしてみたいとき(表示やapiの確認、unityeditor)
        try
        {
            if (!isTest)
            {
                string url = qrDecoder.Decode(image.ToArray(), width, height);
                response = WebApi.GetApi(url);
            }
            else
            {
                string url = "https://esap.herokuapp.com/scouterapi/ranking/" + id.ToString() + "/";
                response = WebApi.GetApi(url);
                // Debug.Log(response);

                /*
                 * response.id = 1;
                 * response.point = 150;
                 * response.name = "ギークラボ長野";
                 * response.is_presented = false;
                 */
            }
            if (response != null)
            {
                Debug.Log(response.point);
                status = 10;
            }
            // 成功音声
            // captureAudioSource.Play();
        }
        catch
        {
            failedAudioSource.Play();
        }
    }