コード例 #1
0
	def get_supports_imaging(self):
		if self.dev:
			return pyf.fp_dev_supports_imaging(self.dev) == 1
		raise "Device not open"
コード例 #2
0
ファイル: pyfprint.py プロジェクト: ffsouza/pyfprint
 def supports_imaging(self):
     """If true, the device can return an image of the finger."""
     if self.dev:
         return pyf.fp_dev_supports_imaging(self.dev) == 1
     raise "Device not open"
コード例 #3
0
ファイル: pyfprint.py プロジェクト: EmericB/pyfprint
	def supports_imaging(self):
		"""If true, the device can return an image of the finger."""
		if self.dev:
			return pyf.fp_dev_supports_imaging(self.dev) == 1
		raise "Device not open"