How to Include Images
Image formatting rules are specified via the Field Specification defined for a Case.
Assuming you have the full path to the image stored in your search index, then you can specify in your field spec that you either want a thumbnail size image via thumb:product_image_url
or you can get a larger image via image:product_image_url
.
Now, if you have relative URL's defined such as poster_path
then you can specify in the Field Specification a JSON formatted specification:
{
"name": "poster_path",
"type":"thumb",
"prefix": "https://www.example.org/images/thumbs"
}
You can specify the type
as either thumb
or image
.
Multiple Images
Quepid can only show a thumbnail and a regular size image, you can't have multiple images or multiple thumbnails. So in that case, index one image as your "hero" image and reference that field.
Images in Books
When you populate a book, Quepid consults the Field Specification to figure out how to format the links for the images in the Rating interface. It then uses that in the Book judgement interface.