hi guys is there a way to make the images downloaded like in facebook, then display it im my app, will display clearly, it seems that the images are blurred like profile pic and fb friends pic, i used this code to download the images:
IEnumerator LoadImage(FriendsScript friends)
{
this.friend = friends;
//Create texture and load image
Texture2D texture = new Texture2D(500, 500);
WWW www = new WWW(friends.picture);
yield return www;
//Apply image as a texture to this object
www.LoadImageIntoTexture(texture);
renderer.material.mainTexture = texture;
}
i used plane object to display the images.