Bitmap.SameAs(Bitmap) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Given another bitmap, return true if it has the same dimensions, config, and pixel data as this bitmap.
[Android.Runtime.Register("sameAs", "(Landroid/graphics/Bitmap;)Z", "")]
public bool SameAs (Android.Graphics.Bitmap? other);
[<Android.Runtime.Register("sameAs", "(Landroid/graphics/Bitmap;)Z", "")>]
member this.SameAs : Android.Graphics.Bitmap -> bool
Parameters
- other
- Bitmap
Returns
- Attributes
Remarks
Given another bitmap, return true if it has the same dimensions, config, and pixel data as this bitmap. If any of those differ, return false. If other is null, return false.
Java documentation for android.graphics.Bitmap.sameAs(android.graphics.Bitmap)
.
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.