Skip to content

ImageQueryable

Julien Amsellem edited this page Sep 30, 2017 · 2 revisions

IImageQueryable

This queryable interface is dedicated to images search based on a few criteria:

  • Width(int width): search images with specified width
  • Height(int height): search images with specified height
  • Portrait(): search images with portrait orientation
  • Landscape(): search images with landscape orientation
  • BitDepth(Bpp bpp): search images with specified number of bits per pixel
    • Bpp1
    • Bpp8
    • Bpp16
    • Bpp24
    • Bpp32

Samples

var everything = new Everything();
var results = everything.Search()
  .Image
  .BitDepth(Bpp.Bpp32);
var everything = new Everything();
var results = everything.Search()
  .Image
  .Width(1024)
  .And
  .Image
  .Height(768);

<< Previous | Next >>

Clone this wiki locally