// This gets info about a person
var TMDBperson = client.GetPersonAsync(person.Id ).Result;
// then loop through but it's null
ImagesflowLayoutPanel.Controls.Clear();
foreach (var image in TMDBperson.Images.Profiles)
{
var PIB = new PersonImageBox(image);
ImagesflowLayoutPanel.Controls.Add(PIB);
}
// you can chain queries together something like this
// but not happy
var TMDBperson = client.GetPersonAsync(person.Id, TMDbLib.Objects.People.ProfileImages ).Result;
The ImageData from https://github.com/LordMike/TMDbLib/tree/master/TMDbLib/Objects/General contains only the image file path. In order to retrieve the files you'll need to retrieve the files via a request to the server. https://stackoverflow.com/questions/3615800/download-image-from-the-site-in-net-c