Esempio n. 1
0
 def test_capture_scaling(self):
     scale = 2
     pb = CaptureService.get_pixel_buffer()
     pb2 = CaptureService.scale_pixel_buffer(pb, pb.get_width() / scale,
                                             pb.get_height() / scale)
     self.assertEqual(pb.get_byte_length(),
                      pb2.get_byte_length() * scale ** 2)
Esempio n. 2
0
 def capture_and_scale():
     pb = CaptureService.get_pixel_buffer()
     CaptureService.scale_pixel_buffer(pb, pb.get_width() / 2,
                                       pb.get_height() / 2)