under the Filtering section:
char** jsonFilter = {"name,"format","height","width",NULL};
aJsonObject* jsonObject = aJson.parse(json_string,jsonFilter);
it lost a "...
it should be:
char** jsonFilter = {"name","format","height","width",NULL};
aJsonObject* jsonObject = aJson.parse(json_string,jsonFilter);
under the Filtering section:
it lost a "...
it should be: