I'm using Bing API to search for images by going the following call:

http://api.bing.net/json.aspx?AppId=[my key]&sources=image&version=2.2&query=[search term]&image.count=4&adult=strict&Image.Filters=Style:Photo&Image.Filters=Face:Face

This is working great and returns photos with faces (thanks to parameter &Image.Filters=Face:Face) matching the searched term. What I would like is to also get the portraits (head & shoulders) wich can be done with the parameter:

&Image.Filters=Face:Portrait

Unfortunately the 2 parameters combined cancel each other.

Does anyone know how to do a OR? i.e. list all photos which are either face or portrait ?

Thanks for your help!

link|improve this question

Did you ever figure this out, Johann? – Tim Sullivan Mar 13 at 7:37
Unfortunately no. Looks like the Bing team isn't Using SO much :( – Johann Mar 15 at 11:14
feedback

1 Answer

I was looking for an answer to this, as well. I don't think you're looking for an "or" search, really. It seems like you want images that are both photos AND faces. Here's what you want:

Image.Filters=Style:Photo+Face:Face

If you want to set a parameter to multiple values, separate them with a plus sign (+).

Here's where you can find the documentation:

http://msdn.microsoft.com/en-us/library/dd250846.aspx

Sadly, this didn't work for me. I wanted to use the Size:Small and Size:Medium filters together, to get searches that are either/or. You can't do that, as far as I can tell :)

link|improve this answer
Thanks for your post but I don't it answers my question! I know how to get photo + face with &Image.Filters=Style:Photo&Image.Filters=Face:Face. What I need is images that are either Face OR Portrait! – Johann Oct 10 '11 at 9:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.