Initializes the receiver, a newly allocated CIImage object, with the specified bitmap.
Original signature is '- (id)initWithBitmapImageRep:(NSBitmapImageRep *)bitmapImageRep'
Available in Mac OS X v10.4 and later.

C# | Visual Basic | Visual C++ |
public static Id InitWithBitmapImageRep( this CIImage __target, NSBitmapImageRep bitmapImageRep )
<ExtensionAttribute> _ Public Shared Function InitWithBitmapImageRep ( _ __target As CIImage, _ bitmapImageRep As NSBitmapImageRep _ ) As Id
[ExtensionAttribute] public: static Id^ InitWithBitmapImageRep( CIImage^ __target, NSBitmapImageRep^ bitmapImageRep )

- __target (CIImage)
- The target instance.
- bitmapImageRep (NSBitmapImageRep)
- An image representation object containing the bitmap data.

The resulting CIImage object.

In Visual Basic and C#, you can call this method as an instance method on any object of type CIImage. When you use instance method syntax to call this method, omit the first parameter.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)