how to save image after download it in unity ???

What can i do after that …plz help me

var url = “http://images.earthcam.com/ec_metros/ourcams/fridays.jpg”;

function Start () {

var www : WWW = new WWW (url);

yield www;

}

Texture2D.EncodeToPNG + File.WriteAllBytes.