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