def image(self):
		captureImageCommand = ShellCommand(self.getConnection())
		captureImageCommand.disableCommunication(True)
		tmpFile = self.tempImageFilename()

		captureImageCommand.setArguments(command = '/usr/bin/fswebcam', args = [tmpFile])
		captureImageCommand.execute()

		return {**captureImageCommand.getResponse()} + {"file": tmpFile}