I have a cube which I had assigned a jpeg image to it as Texture.
That image has some metadata and I need to parse those meta data.
I can have access to the texture like this :
Texture cube1TEX = cube1.renderer.material.GetTexture(“_MainTex”);
and get its name and other properties: (Debug.Log(cube1TEX.name)![]()
But I can not find a way to access the actual jpeg of the texture and parse it’s metadata.