Beispiel #1
0
        public async Task RotateAsync(RotationAngle angle)
        {
            if (SourceImageFile == null)
            {
                return;
            }

            if (TempImageFile != null)
            {
                await BitmapHelper.RotateAsync(this.TempImageFile, angle);

                OnTempImageFileChanged();
            }
        }