Image Search API v7 - 如何限制结果数量&图像类型

时间:2018-01-16 18:25:30

标签: microsoft-cognitive bing-api

我看过https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#filter,但很难找到有关我问题的信息。

  1. 是否可以将搜索结果限制为仅限N个项目?
  2. 如何限制只搜索PNG和BMP图像?
  3. 感谢。

1 个答案:

答案 0 :(得分:2)

您可以将 count = N 设置为限制搜索到N个项目。另外,例如对png图像使用 imagetype:png 。以下产生10 png图像:

GET https://api.cognitive.microsoft.com/bing/v7.0/images/search?q="birds imagetype:png"&count=10