Resize and Mask an Image

Make image with a mask!


Source:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
- (UIImage*) maskImage:(UIImage *)image  {
     
     CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
     
     UIImage *maskImage = [UIImage imageNamed:@"mask.png"];
     CGImageRef maskImageRef = [maskImage CGImage];
     
     // create a bitmap graphics context the size of the image
     CGContextRef mainViewContentContext = CGBitmapContextCreate (NULL, maskImage.size.width, maskImage.size.height, 8, 0, colorSpace, kCGImageAlphaPremultipliedLast);
     
     
     if (mainViewContentContext==NULL)
          return NULL;
     
     CGFloat ratio = 0;
     
     ratio = maskImage.size.width/ image.size.width;
     
     if(ratio * image.size.height < maskImage.size.height) {
          ratio = maskImage.size.height/ image.size.height;
     }
     
     CGRect rect1  = {{0, 0}, {maskImage.size.width, maskImage.size.height}};
     CGRect rect2  = {{-((image.size.width*ratio)-maskImage.size.width)/2 , -((image.size.height*ratio)-maskImage.size.height)/2}, {image.size.width*ratio, image.size.height*ratio}};
     
     
     CGContextClipToMask(mainViewContentContext, rect1, maskImageRef);
     CGContextDrawImage(mainViewContentContext, rect2, image.CGImage);
     
     
     // Create CGImageRef of the main view bitmap content, and then
     // release that bitmap context
     CGImageRef newImage = CGBitmapContextCreateImage(mainViewContentContext);
     CGContextRelease(mainViewContentContext);
     
     UIImage *theImage = [UIImage imageWithCGImage:newImage];
     
     CGImageRelease(newImage);
     
     // return the image
     return theImage;
}

Download Sources of Project

Continue reading

PVRTexture & Texture2D

Hi guys!

Расскажу о приимуществах и недостатках о разных видах текстурирования.

Начну с текстурирования не PVR, более простое. Простота заключается в следуещих удобствах:
- Возможность использовать любое расширения картинки с неодинаковой высотой и шириной (желательно до 1024×1024).
- Можно использовать картинки TGA, PNG, JPG, etc.
- Один из значительных плюсов является простота размещения. Создается bound в который всталяется картинка.
- Использование картинок с прозрачностью.

Примеры текстурирования приведены ниже


Continue reading

OpenGL and gif – gifPlayer for iPhone

It’s really easy! If you have this source code :)

OpenGL GIF Player iPhoneOpenGL GIF Player iPhone

P.S.: I’ve returned!