I don't know how Twitterizer2 API works but I think you could solve your problem in two ways:
- Search in Official Twitter API something that helps you to parse such links (look at Tweet Entities);
- Download the content of that URL yourself and parse it;
For the second approach I would suggest something like the function below (this parsing is based on the first picture I have found on my followed people tweets so it works only for TwitPic images):
private static Uri GetPicture(string twitterUri)
{
using (var webClient = new WebClient())
{
string html = webClient.DownloadString(twitterUri);
int imgIndex = html.IndexOf("<img class=\"photo\" id=\"photo-display\"");
int srcStartIndex = html.IndexOf("src", imgIndex) + 5;
int srcEndIndex = html.IndexOf("\"", srcStartIndex);
string imgSrc = html.Substring(srcStartIndex, srcEndIndex - srcStartIndex);
return new Uri(imgSrc);
}
}
As you could imagine the usage is:
Uri imgUri = GetPicture("http://t.co/RQu9hZn8"); // this is a real image