56 references to WICBitmapTransformOptions
PresentationCore (56)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (6)
234internal WICBitmapTransformOptions WICTransformOptions 238WICBitmapTransformOptions options = 0; 243options = WICBitmapTransformOptions.WICBitmapTransformRotate0; 246options = WICBitmapTransformOptions.WICBitmapTransformRotate90; 249options = WICBitmapTransformOptions.WICBitmapTransformRotate180; 252options = WICBitmapTransformOptions.WICBitmapTransformRotate270;
System\Windows\Media\Imaging\JpegBitmapEncoder.cs (19)
121return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal)); 129_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 133_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 147return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipVertical)); 155_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 159_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 245return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate90) && (!Rotate270))); 255_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate90; 259_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 276return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate180) && (!Rotate270))); 286_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate180; 290_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 307return (Convert.ToBoolean(((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate270) == (int)WICBitmapTransformOptions.WICBitmapTransformRotate270)); 317_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate270; 321_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 349private const WICBitmapTransformOptions c_defaultTransformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 350private WICBitmapTransformOptions _transformation = c_defaultTransformation;
System\Windows\Media\Imaging\TransformedBitmap.cs (11)
110out WICBitmapTransformOptions options) 119options = WICBitmapTransformOptions.WICBitmapTransformRotate0; 123options |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 128options |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 138options = WICBitmapTransformOptions.WICBitmapTransformRotate90; 142options |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 147options |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 161WICBitmapTransformOptions options; 193if (options != WICBitmapTransformOptions.WICBitmapTransformRotate0) 227if (options == WICBitmapTransformOptions.WICBitmapTransformRotate0 && 239WICBitmapTransformOptions.WICBitmapTransformRotate0));
System\Windows\Media\Imaging\WmpBitmapEncoder.cs (19)
138return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal)); 146_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 150_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 164return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipVertical)); 172_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 176_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 751return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate90) && (!Rotate270))); 761_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate90; 765_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 782return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate180) && (!Rotate270))); 792_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate180; 796_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 813return (Convert.ToBoolean(((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate270) == (int)WICBitmapTransformOptions.WICBitmapTransformRotate270)); 823_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate270; 827_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 872private const WICBitmapTransformOptions c_defaultTransformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 873private WICBitmapTransformOptions _transformation = c_defaultTransformation;
System\Windows\Media\UnsafeNativeMethodsMilCoreApi.cs (1)
886WICBitmapTransformOptions options);