initWithCIImage$1 method
UIImage
initWithCIImage$1(
- CIImage ciImage, {
- required double scale,
- required UIImageOrientation orientation,
initWithCIImage:scale:orientation:
Implementation
UIImage initWithCIImage$1(CIImage ciImage, {required double scale, required UIImageOrientation orientation}) {
objc.checkOsVersionInternal('UIImage.initWithCIImage:scale:orientation:', iOS: (false, (6, 0, 0)));
final $ret = _objc_msgSend_2xggvt(
object$.ref.retainAndReturnPointer(),
_sel_initWithCIImage_scale_orientation_,
ciImage.ref.pointer,
scale,
orientation.value,
);
return UIImage.fromPointer($ret, retain: false, release: true);
}