-
Notifications
You must be signed in to change notification settings - Fork 26
ImageQueryable
Julien Amsellem edited this page Sep 30, 2017
·
2 revisions
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
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);