RICOH SHETAから角度を取り出すコード@C#版 MIROさんから頂いたコードを元に改造しました。 UNITYで使用することを前提にしています。 using UnityEngine; using System.Collections; using System.IO; public class ViewPict : MonoBehaviour { static int SerchAngle(string fileName) { BinaryReader br = new BinaryReader(new FileStream("Assets/Resources/" + fileName+".jpg", FileMode.Open)); byte [] buf = br.ReadBytes((int)br.BaseStream.Length ); br.Close(); br = nu