图片搜索 API v7 - 如何限制结果数量和图片类型

Image Search API v7 - How to limit number of result & image type

我读过 https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#filter ,但几乎找不到关于我的问题的信息。

  1. 是否可以将搜索结果限制为仅 N 项?
  2. 如何将搜索限制为仅 PNG 和 BMP 图像?

谢谢。

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

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