transferir restaurar pasar mensajes los historial gratis google desde cómo iphone ios image-processing uiimage

iphone - restaurar - Cómo enmascarar una imagen en IOS sdk?



transferir mensajes de whatsapp de android a iphone (1)

Puedes usar este código (obtenido de aquí ),

- (UIImage*) maskImage:(UIImage *)image withMask:(UIImage *)maskImage { CGImageRef maskRef = maskImage.CGImage; CGImageRef mask = CGImageMaskCreate(CGImageGetWidth(maskRef), CGImageGetHeight(maskRef), CGImageGetBitsPerComponent(maskRef), CGImageGetBitsPerPixel(maskRef), CGImageGetBytesPerRow(maskRef), CGImageGetDataProvider(maskRef), NULL, false); CGImageRef masked = CGImageCreateWithMask([image CGImage], mask); return [UIImage imageWithCGImage:masked]; }

Quiero aplicar un filtro de imagen o máscara cuando se dibuja una palabra en la imagen. La palabra tendrá un efecto transparente para ver a través de la imagen de fondo. ¿Es posible en SDK nativo IOS o necesito api diferente para realizar esto. Esta imagen consiste en 2 imágenes. una es donde está escrita la India, y otra es la carta de India.

Este es el código que estoy usando para generar imágenes a partir de texto.

-(UIImage *)imageFromText:(NSString *)text{ // set the font type and size UIFont *font = [UIFont systemFontOfSize:100.0]; CGSize size = [text sizeWithFont:font]; // check if UIGraphicsBeginImageContextWithOptions is available (iOS is 4.0+) if (UIGraphicsBeginImageContextWithOptions != NULL) UIGraphicsBeginImageContextWithOptions(size,NO,0.0); else // iOS is < 4.0 UIGraphicsBeginImageContext(size); // optional: add a shadow, to avoid clipping the shadow you should make the context size bigger // CGContextRef ctx = UIGraphicsGetCurrentContext(); CGContextSetShadowWithColor(ctx, CGSizeMake(0.0, 1.0), 5.0, [[UIColor blackColor] CGColor]); CGContextSetBlendMode(ctx,kCGBlendModeNormal); CGContextSetFillColorWithColor(ctx, [UIColor whiteColor].CGColor); /*NSLog(@"Rect %@",CGContextGetClipBoundingBox(ctx)); CGImageRef alphaMask = CGBitmapContextCreateImage(ctx); CGContextClipToMask(ctx, CGContextGetClipBoundingBox(ctx), alphaMask);*/ // draw in context, you can use also drawInRect:withFont: [text drawAtPoint:CGPointMake(0.0, 0.0) withFont:font]; // transfer image UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image;}

Está funcionando bien, sin embargo, necesito generar la imagen que tendrá fondo negro y texto transparente para ver a través de ella.