downloaded images from facebook is blurred

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.

The default texture filtering for downloaded images causes this, from memory. Once you’ve downloaded it you want to set the texture filtering properties manually. To know what looks good, check the texture properties in the Editor for one that’s working nicely.

thanks for the reply bro!, where can i find that editor for texture properties?sorry to ask.

In the Unity Editor, select a texture in the Project tab, and look in the Inspector tab…

thanks bro!have a nice day!