Hi,
Welcome to Microsoft Q&A!
You mean to flip image horizontally, right? If yes, you could use Matrix3x2.CreateScale(ScaleX,ScaleY,centerpoint) method, which is used to zoom image. ScaleX between 0 and -1 flip the scale object and decrease its width. ScaleX less than -1 flip the object and increase its width. A value of -1 flips the scaled object but does not change its horizontal size. As follows:
ds.Transform = Matrix3x2.CreateScale(-1,1, centerpoint);
Please note the value of centerpoint
.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.