Paint.FilterBitmap Property

Definition

Whether or not the bitmap filter is activated. -or- Helper for setFlags(), setting or clearing the FILTER_BITMAP_FLAG bit.

public bool FilterBitmap { [Android.Runtime.Register("isFilterBitmap", "()Z", "")] get; [Android.Runtime.Register("setFilterBitmap", "(Z)V", "GetSetFilterBitmap_ZHandler")] set; }
[<get: Android.Runtime.Register("isFilterBitmap", "()Z", "")>]
[<set: Android.Runtime.Register("setFilterBitmap", "(Z)V", "GetSetFilterBitmap_ZHandler")>]
member this.FilterBitmap : bool with get, set

Property Value

Attributes

Remarks

Property getter documentation:

Whether or not the bitmap filter is activated. Filtering affects the sampling of bitmaps when they are transformed. Filtering does not affect how the colors in the bitmap are converted into device pixels. That is dependent on dithering and xfermodes.

Java documentation for android.graphics.Paint.isFilterBitmap().

Property setter documentation:

Helper for setFlags(), setting or clearing the FILTER_BITMAP_FLAG bit. Filtering affects the sampling of bitmaps when they are transformed. Filtering does not affect how the colors in the bitmap are converted into device pixels. That is dependent on dithering and xfermodes.

Java documentation for android.graphics.Paint.setFilterBitmap(boolean).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also