當前位置: 首頁>>代碼示例>>Python>>正文


Python models.Filter類代碼示例

本文整理匯總了Python中wagtail.images.models.Filter的典型用法代碼示例。如果您正苦於以下問題:Python Filter類的具體用法?Python Filter怎麽用?Python Filter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Filter類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_6_digit_hex

    def test_6_digit_hex(self):
        fil = Filter(spec='width-400|bgcolor-ffffff')
        image = Image.objects.create(
            title="Test image",
            file=get_test_image_file(),
        )
        out = fil.run(image, BytesIO())

        self.assertFalse(out.has_alpha())
開發者ID:Henk-JanVanHasselaar,項目名稱:wagtail,代碼行數:9,代碼來源:test_image_operations.py

示例2: test_gif

    def test_gif(self):
        fil = Filter(spec='width-400|format-gif')
        image = Image.objects.create(
            title="Test image",
            file=get_test_image_file(),
        )
        out = fil.run(image, BytesIO())

        self.assertEqual(out.format_name, 'gif')
開發者ID:morris-tech,項目名稱:wagtail,代碼行數:9,代碼來源:test_image_operations.py

示例3: test_original_has_alpha

    def test_original_has_alpha(self):
        # Checks that the test image we're using has alpha
        fil = Filter(spec='width-400')
        image = Image.objects.create(
            title="Test image",
            file=get_test_image_file(),
        )
        out = fil.run(image, BytesIO())

        self.assertTrue(out.has_alpha())
開發者ID:Henk-JanVanHasselaar,項目名稱:wagtail,代碼行數:10,代碼來源:test_image_operations.py

示例4: test_jpeg_quality_filter_overrides_setting

    def test_jpeg_quality_filter_overrides_setting(self):
        fil = Filter(spec='width-400|jpegquality-40')
        image = Image.objects.create(
            title="Test image",
            file=get_test_image_file_jpeg(),
        )

        f = BytesIO()
        with patch('PIL.Image.Image.save') as save:
            fil.run(image, f)

        save.assert_called_with(f, 'JPEG', quality=40, optimize=True, progressive=True)
開發者ID:morris-tech,項目名稱:wagtail,代碼行數:12,代碼來源:test_image_operations.py

示例5: test_cache_key_fill_filter_with_focal_point

    def test_cache_key_fill_filter_with_focal_point(self):
        image = Image(
            width=1000,
            height=1000,
            focal_point_width=100,
            focal_point_height=100,
            focal_point_x=500,
            focal_point_y=500,
        )
        fil = Filter(spec='fill-100x100')
        cache_key = fil.get_cache_key(image)

        self.assertEqual(cache_key, '0bbe3b2f')
開發者ID:morris-tech,項目名稱:wagtail,代碼行數:13,代碼來源:test_image_operations.py

示例6: test_runs_operations

    def test_runs_operations(self):
        run_mock = Mock()

        def run(willow, image, env):
            run_mock(willow, image, env)

        self.operation_instance.run = run

        fil = Filter(spec='operation1|operation2')
        image = Image.objects.create(
            title="Test image",
            file=get_test_image_file(),
        )
        fil.run(image, BytesIO())

        self.assertEqual(run_mock.call_count, 2)
開發者ID:morris-tech,項目名稱:wagtail,代碼行數:16,代碼來源:test_image_operations.py

示例7: test_cache_key_fill_filter

    def test_cache_key_fill_filter(self):
        image = Image(width=1000, height=1000)
        fil = Filter(spec='fill-100x100')
        cache_key = fil.get_cache_key(image)

        self.assertEqual(cache_key, '2e16d0ba')
開發者ID:morris-tech,項目名稱:wagtail,代碼行數:6,代碼來源:test_image_operations.py

示例8: test_cache_key

    def test_cache_key(self):
        image = Image(width=1000, height=1000)
        fil = Filter(spec='max-100x100')
        cache_key = fil.get_cache_key(image)

        self.assertEqual(cache_key, '')
開發者ID:morris-tech,項目名稱:wagtail,代碼行數:6,代碼來源:test_image_operations.py


注:本文中的wagtail.images.models.Filter類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。