<<

PutImage

    PutImage($biblionumber, $srcimage, $replace);

Stores binary image data and thumbnail in database, optionally replacing existing images for the given biblio.

RetrieveImage my ($imagedata, $error) = RetrieveImage($imagenumber);

Retrieves the specified image.

ListImagesForBiblio my (@images) = ListImagesForBiblio($biblionumber);

Gets a list of all images associated with a particular biblio.

DelImage

    my ($dberror) = DelImage($imagenumber);

Removes the image with the supplied imagenumber.

NoImage

    C4::Images->NoImage;

Returns the gif to be used when there is no image matching the request, and its mimetype (image/gif).

<<