«image-capture» etiketlenmiş sorular

17
Retina ekranda kalite kaybı olmadan UIView'i UIImage'a yakalama
Kodum normal cihazlar için iyi çalışıyor ancak retina cihazlarda bulanık görüntüler oluşturuyor. Sorunum için bir çözüm bilen var mı? + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; }
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.