The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
56 views

How to use CGContextDrawImage?

I need some help using the CGContextDrawImage. I have the following code which will create a Bitmap context and convert the pixel data to CGImageRef. Now I need to display that image using ...
1
vote
1answer
149 views

Drawing pattern with UIImage not like pattern but it is filled UIImage in UIView

My line of code: UIColor *brushPattern=[[UIColor alloc]initWithPatternImage:[UIImage imageNamed:@"Frame-1@2x.png"]]; ...
6
votes
2answers
299 views

Put border around partially transparent Image being drawn on CGContext

I have an image with a yellow vase in the foreground and transparent background: I'm drawing it on a CGContext: CGContextDrawImage(context, CGRectMake(0, 0, 100, 100), myImage.CGImage); I can ...
0
votes
0answers
383 views

CGContextDrawPath: invalid context 0x0

I have this code, that I think is the problem here: CGContextRef context = CGBitmapContextCreate(nil, routeView.frame.size.width, ...
0
votes
0answers
69 views

iPad Retina: performance issues applying a mask at runtime

I have a draggable button that handle the drag inside event whit ImageMoved method., At every step of the dragging I need to create an image, obtained cropping a larger image, and finally I have to ...
2
votes
1answer
106 views

pdf generated upside down

I am creating pdf using below code UIImage *CurImage=[UIImage imageWithContentsOfFile:[ImageArr objectAtIndex:i]]; UIView *ViewDraw=[[UIView alloc]initWithFrame:CGRectMake(0,10, pageSize, pageSize)]; ...
5
votes
2answers
213 views

Strange behaviour with CGContext - iOS

The following code splits an image into 2. It seems working fine with non-retina devices, however it gives a different output with retina devices. Could someone please help me fix it? Thanks.. My ...
0
votes
3answers
204 views

How can I find the points in a line - Objective c?

Consider a line from point A (x,y) to B (p,q). The method CGContextMoveToPoint(context, x, y); moves to the point x,y and the method CGContextAddLineToPoint(context, p, q); will draw the line from ...
0
votes
0answers
88 views

Create 1 bit image from UIView iPad

In my iPad application,user has option to draw his work in a view,then i want to convert that view into UIImage.I have to send those images into server. That image is currently 32 bit depth image but ...
0
votes
1answer
191 views

where is CGSConvertBGR888toRGBA8888 from?

I am working on an image process app, which decompresses and displays images. Our image data is 24bit per color, which is RGB respectively. I use a thread to decompress image and return a UIImage ...
3
votes
2answers
590 views

drawRect always wants to update the entire screen when view is shrunken

I have a CGImage that is displayed in an UIView controlled by a UIScrollView. The image is typically 1680*1050 in 24 bit colors without alpha channel. The image is created like this: CGImageRef ...
0
votes
0answers
81 views

How can make multiple stages for running multiple movie files using openGL?

I want to make program in xcode on mac where i want to make a window in two stages and two movie will run on it and these movie file data will come from buffer.Thats mean i have two movie file and i ...
0
votes
1answer
867 views

iOS: Rotating with CGContextRotate

Im trying to rotate an image, that i want to draw on a image file (to the context. Everything works fine, except when i rotate the image. Basically i have an image; i want to scale and resize the ...
0
votes
2answers
1k views

Is it possible to draw Graphics with CGContext and save them into a NSMutableArray?

At first I draw graphics: -(void)drawRect: (CGRect)rect{ //Circle circle = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(circle, [UIColor ...
1
vote
3answers
387 views

Add PDF page in iOS

I have an algorithm to create a PDF file, but I want just to add one pdf page at the end of existing pdf. Do any one has idea about that?
0
votes
1answer
76 views

clearContextBeforeDrawing in TouchEnd Method

I am using the pencil drawing simply. But i have to show it from rough drawing to Smooth drawing. So I am using the code differently in both touchesMoved and touchesEnded. The codes are as follows: ...
0
votes
1answer
77 views

Array object gets released in iPad app due to memory warnings in iPad app

I am developing an iPad app. In my iPad if i run that app only then nothing happens, if i start some other apps nearly 4 to 5 then my app shows application received memory warning level 1 & ...
2
votes
0answers
362 views

Extracting image from UIImageView with transform

I wrote a multi-touch based photo tweak program. With UIImageView showing a photo, the transform value is set according to the user touch, to expand/shrink the image. Here's some code that handle the ...
1
vote
1answer
520 views

iOS - is it possible to cache CGContextDrawImage?

I used the timing profile tool to identify that 95% of the time is spent calling the function CGContextDrawImage. In my app there are a lot of duplicate images repeatably being chopped from a sprite ...
0
votes
1answer
389 views

UIImage drawAtPoint after CGContextClip

I use ABUITableViewCell and draw all content manually. Also I use CGContextClip to make rounded corners, all works great, but when I tried to draw another image outside clip rect it hasn't been ...
0
votes
1answer
320 views

How to draw a UIImage scaled up with interpolation for a retina display?

I load some images from the web in my app and draw them using UIImage drawImage. I want to keep using the same images for the retina display but smooth them with interpolation. How can we accomplish ...
0
votes
1answer
187 views

how to create curve for lines when handwriting

I'm creating an app, and in one part, I'm trying to implement hand-writing. I've used an imageView to write on, which will be saved and sent to a server as a pdf. I have implemented touch begin, move ...
0
votes
1answer
331 views

How erase a line draw in iphone(CGGraphics)?

I am working on an iPhone application of drawing, user can draw a line and can remove as well so can any body help me how to remove the line or drawing? code for draw - (void)drawRect:(CGRect)rect { ...
0
votes
1answer
428 views

CGContext strangeness

I have a little code module that should refer as signature panel so that the user can sign on this panel with his finger. The whole thing runs on the iPad. Now, I managed to do the usual ...
7
votes
2answers
5k views

CGContextDrawImage is EXTREMELY slow after large UIImage drawn into it

It seems that CGContextDrawImage(CGContextRef, CGRect, CGImageRef) performs MUCH WORSE when drawing a CGImage that was created by CoreGraphics (i.e. with CGBitmapContextCreateImage) than it does when ...
1
vote
1answer
561 views

Alpha Detection in Layer OK on Simulator, not iPhone

First, check out this very handy extension to CALayer from elsewhere on SO. It helps you determine if a point in a layer's contents-assigned CGImageRef is or isn't transparent. n.b.: There is no ...
65
votes
9answers
56k views

CGContextDrawImage draws image upside down when passed UIImage.CGImage

Does anyone know why CGContextDrawImage would be drawing my image upside down? I am loading an image in from my application: UIImage *image = [UIImage imageNamed:@"testImage.png"]; And then simply ...