Source code for plom.solutions.getSolutionImage

# SPDX-License-Identifier: AGPL-3.0-or-later
# Copyright (C) 2021 Andrew Rechnitzer
# Copyright (C) 2021-2022 Colin B. Macdonald

from plom.solutions import with_manager_messenger


[docs]@with_manager_messenger def getSolutionImage(question, version, *, msgr): """Get a solution image from the server. Args: question (int): which question. version (int): which version. Keyword Args: msgr (plom.Messenger/tuple): either a connected Messenger or a tuple appropriate for credientials. Return: bytes: the bitmap of the solution or None if there was no solution. If you wish to know what sort of image it is, consider using :py:mod:`imghdr` in the Python standard library. Raises: PlomNoSolutionException: the question/version asked for does not have a solution image on the server. This is also returned if the values are out of range. """ return msgr.getSolutionImage(question, version)