56 references to WICBitmapTransformOptions
PresentationCore (56)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (6)
243internal WICBitmapTransformOptions WICTransformOptions 247WICBitmapTransformOptions options = 0; 252options = WICBitmapTransformOptions.WICBitmapTransformRotate0; 255options = WICBitmapTransformOptions.WICBitmapTransformRotate90; 258options = WICBitmapTransformOptions.WICBitmapTransformRotate180; 261options = WICBitmapTransformOptions.WICBitmapTransformRotate270;
System\Windows\Media\Imaging\JpegBitmapEncoder.cs (19)
135return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal)); 143_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 147_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 161return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipVertical)); 169_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 173_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 259return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate90) && (!Rotate270))); 269_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate90; 273_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 290return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate180) && (!Rotate270))); 300_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate180; 304_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 321return (Convert.ToBoolean(((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate270) == (int)WICBitmapTransformOptions.WICBitmapTransformRotate270)); 331_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate270; 335_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 363private const WICBitmapTransformOptions c_defaultTransformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 364private WICBitmapTransformOptions _transformation = c_defaultTransformation;
System\Windows\Media\Imaging\TransformedBitmap.cs (11)
130out WICBitmapTransformOptions options) 139options = WICBitmapTransformOptions.WICBitmapTransformRotate0; 143options |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 148options |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 158options = WICBitmapTransformOptions.WICBitmapTransformRotate90; 162options |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 167options |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 181WICBitmapTransformOptions options; 213if (options != WICBitmapTransformOptions.WICBitmapTransformRotate0) 247if (options == WICBitmapTransformOptions.WICBitmapTransformRotate0 && 259WICBitmapTransformOptions.WICBitmapTransformRotate0));
System\Windows\Media\Imaging\WmpBitmapEncoder.cs (19)
152return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal)); 160_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 164_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipHorizontal; 178return (Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformFlipVertical)); 186_transformation |= WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 190_transformation &= ~WICBitmapTransformOptions.WICBitmapTransformFlipVertical; 765return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate90) && (!Rotate270))); 775_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate90; 779_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 796return ((Convert.ToBoolean((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate180) && (!Rotate270))); 806_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate180; 810_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 827return (Convert.ToBoolean(((int)_transformation & (int)WICBitmapTransformOptions.WICBitmapTransformRotate270) == (int)WICBitmapTransformOptions.WICBitmapTransformRotate270)); 837_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate270; 841_transformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 886private const WICBitmapTransformOptions c_defaultTransformation = WICBitmapTransformOptions.WICBitmapTransformRotate0; 887private WICBitmapTransformOptions _transformation = c_defaultTransformation;
System\Windows\Media\UnsafeNativeMethodsMilCoreApi.cs (1)
901WICBitmapTransformOptions options);