Is Image.Clip or Path.Fill faster when applying transforms (translation / rotation) to cut out images?

I have a user who drags and rotates a cropped image using RotateTransform and TranslateTransform.

I want to reduce the flicker / jitter picture as much as possible during the redraw.

To create a cropped image, I can either use Image.Clip (for pathgeometry) or Path.Fill (with image).

What would provide the most enjoyable experience for the user?

+3
source share
1 answer

Path.Fill (this is a simple texturing, for Image.Clip a few additional calculations take place)

0
source

All Articles