0
votes
0answers
24 views

How to set the cagradientcolor to the uibutton cashapelayer objective c.I want to fill colour to different shaped button

I want to add the colour to uibutton cashape layer.Is that possible according to the reference in the url Gradient color effect on CAShapeLayer.. we can add the colour to the uibutton cashape layer.I ...
1
vote
1answer
42 views

how to shift the slider image knot outside

i have difficulties understanding the math behind on how to calculate the circumference of the knots to the center of the circle. i hope you guys can give me some pointer. the current calculation set ...
-1
votes
2answers
76 views

How to draw a full circle with image

I'm pretty new with core graphics. I need to draw a full circle. How do I go about it? I currently have a masked circle. I referred to this example. //Use the draw rect to draw the Background, the ...
2
votes
1answer
63 views

Draw straight line with two fingers

How can I paint/draw a straight line with 2 fingers with the line being visible while the dragging or touching is still being done by the user? I've already tried simple painting using coregraphics ...
0
votes
1answer
32 views

BButton & CGGradient release - memory leaks

I am using BButton (https://github.com/jessesquires/BButton) to draw some nice looking buttons in cells within a UICollectionView. When I refresh the UICollectionView's data, I record some memory ...
0
votes
0answers
81 views

iOS painting Core Graphics Undo/Redo

Currently i am using core graphics to draw lines. How can i implement undo redo for this ? This is the code i am using to draw. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { ...
0
votes
1answer
49 views

CGPDFDocumentCreateWithURL fails (Toll-Free bridging of NSURL to CFURLRef)

I've got the following function: - (void)loadPdfFromPath:(NSString*)path { NSURL *pathUrl = [NSURL URLWithString:path]; _pdfDocument = CGPDFDocumentCreateWithURL((CFURLRef)pathUrl); } ...
0
votes
0answers
36 views

Convert YCbCr CIImage to RGBA CGImage

How do I convert from a YCbCr CIImage to RGBA format so I can create a context and then create a CGImage or UIImage? Is there a CIFilter for that purpose?
2
votes
1answer
49 views

Convert from 1280x720 to UIView dimensions

I have an app that finds QR finder marks from the AVCaptureDevice sample buffer delegate. Now I am trying to put boxes on the screen to cover the QR marks. However, I am having trouble converting ...
0
votes
1answer
38 views

iOS Non Affine Transform

Is it posible to do a non-affine transform in Core graphics? I want a perspective transform and can't seem to find any mention of something like it in the documentation.
2
votes
3answers
394 views

Xcode Graph Calculator sin(X) cos(x) tan(x)

I want to create a graphic calculator and Im stuck with the graph bit. I want to know how to plot a graph for sin(x) cos(x) tan(x). I have made the grid already. I dont want to use core plot ...
0
votes
1answer
83 views

Core Graphics Transparent Overlay

I'm replacing the background view of a UITableViewCell with my own custom subclass of UIView, in which I override the drawRect method with my own, which creates a multi-colored and changing ...
1
vote
0answers
35 views

Is there any absolute index of app's performance in XCODE INSTRUMENTS?

I've profiled my app with xcode instruments. Now I have a FPS log (see picture). I'd like to have all FPS statistics in separate file (i.e. excel table) to analyze average fps or something more. Can ...
0
votes
1answer
95 views

What is the CoreGraphics equivalent of UIKit's contentScaleFactor?

What is the CoreGraphics equivalent of UIKit's contentScaleFactor? I am creating a PDF using the UKit PDF creation functions, which allow rendering to a PDF context. I have a requirement, however, to ...
2
votes
1answer
148 views

Cropping sharp edges from behind a UIBezierPath rounded rectangle

I'm learning my way through UIBezierPaths by creating a table from scratch, and having individual cells filled with different colours. This is a custom object I'm building which is contained in a ...
1
vote
3answers
46 views

Change the color of UIView Object Reference while it is animating

I have a drawn a view in my xib file. I want it to change its color while it is being animated. Animation is working. But I cant find to change the color of the Object. Please help me with this. I'm ...
1
vote
1answer
188 views

iPad - Draw Rotated Text using drawRect method in iPad

I am working on an ipad application in which I am trying to render an image with multiple text label. I am drawing the text on context using drawRect method. I want an output something like shown in ...
1
vote
1answer
69 views

How do I “redraw layers” in Core Graphics?

I remember that when I was reading the Apple documentation, it would mention that when you call a function such as addSubview, you are adding a “layer of paint,” so to speak, and every time it is ...
1
vote
1answer
111 views

Runtime error trying to use CoreGraphics with MacRuby

I'm trying to build a MacRuby 0.12 project on OSX 10.8. The problem appears to be that this line: @context = NSGraphicsContext.currentContext.graphicsPort throws this error: unrecognized runtime ...
0
votes
0answers
67 views

How do I draw a view exactly like this badge?

Here it is: I want to mimic the glossy gradient, the border and the colour. How is this done with Core Graphics? Here is how my control looks right now: I just need to add this cool border! ...
0
votes
1answer
86 views

Transparency in CGContext

I'm trying to set a transparent background for a CGContext but keep getting : CGBitmapContextCreateImage: invalid context 0x0 Here's what I've got. If I switch kCGImageAlphaLast to ...
1
vote
1answer
71 views

Core Graphics drawing lags on iPod 4th generation and above, but smooth on 3rd gen iPod touch?

Ive developed a simple drawing app using core graphics to draw with your finger on the screen using Core graphics. On 3rd generation iPod touch's it runs very very smooth, but anything better or more ...
0
votes
0answers
370 views

Combining two images from uiimageviews into one uiimage with correct positions

I have a view with two UIImageViews. The first uiimageview is a picture, which can be changed but is always at the same position. The second uiimageview contains a uiimage of a logo, this uiimageview ...
0
votes
3answers
186 views

Drawing a line between the previous end point to next start point

i'm stuck at this problem. I need to draw a line between the previous end point to next start point. My code for drawing a line between 2 points is - (void)drawRect:(CGRect)rect { CGContextRef ...
1
vote
1answer
499 views

Drawing using Quartz 2D on a uiimageview - lines getting blurry

This is a question related to drawing paths (in response to touch events) using Core Graphics in a view for an iPad application. I have a view as a part of a scrollview where I want to trace the ...
1
vote
1answer
77 views

Xcode convert rawdata from 8 bit/channel to 16 bit/channel using apple native framework

I have rgb raw data, which is 8 bit/channel, i need to convert it to 16 bit /channel, any native framework can do so, thanks. so input is image width, height, rawdata, any suggestion?
1
vote
2answers
145 views

Checking for overlapping images with a hole in an image

I have two image views. They are "puzzle pieces" I want to test if one fits inside the other. Not that the frames overlap. I guess its a CGRect thing... but seems like they test the outer ...
0
votes
1answer
155 views

Painting in bitmap context with my finger and getting double image and doted line, any ideas?

I have this code to paint with my finger on ipad in bitmap context. And i'm getting lined (long dots) line instead of full line and the line is flickering when i move my finger, and it doubled in ...
0
votes
0answers
155 views

How to determine pixel-coordinate in an image from a point drawn on a UIView containing that image

I'm using coreGraphics to draw on top of an image, but I have no clue how to equate a point on the UIView to the matching pixel in the image. I am trying to measure pixel-distance in the image ...
0
votes
2answers
1k views

core graphics CGContextClip - Xcode

Starting to understand core graphics. I'm drawing a path with a fill and a stroke, but I cannot get it to clip. Can anyone tell me what I am doing wrong here? This code is in the drawRect method of ...
0
votes
0answers
60 views

testing for taps on graphics drawn in a UIView

I have drawn a non-rectangular shape into a UIView subclass using core graphics. Now I want to make this shape "tappable", but not the areas of the UIView that is transparent. IE the UIView subclass ...
0
votes
1answer
182 views

Calling draw method external to the ViewController

I'm trying to setup a method in an external class that looks like the following: myClass.m - (void)drawSomeStuffInContext:(CGContextRef)context atStartingPoint:(CGPoint *)coords { //draw some ...
0
votes
2answers
195 views

Getting the outer path only of a 'merged' Core Graphics path

I have created a path in Core Graphics to draw a heart shape, however, to do this I have created a diamond shape and 2 circles, this image looks great, but I just want to know if it is possible to get ...
0
votes
2answers
142 views

Quartz : Undefined symbols when building for x86_64 architecture

I've create a console project and add Quartz.Framework, QuartzCore.Framework into my app. But during linking it gives following errors Undefined symbols for architecture x86_64: ...
1
vote
0answers
499 views

OpenGL/CoreGraphics to page curl layer (not animation)

I am attempting to take a CALayer and put a small page curl at the bottom right. Similar to how the iOS Maps on iPad looks. I think how they do it is by starting a page curl and stopping it at ...
1
vote
1answer
671 views

Add an undo/redo method to core graphic draw app

I am trying to implement an undo/redo method using NSUndoManager. I have asked other questions on this, but am still stuck. Where I am at the moment is as follows: .h NSUndoManager *undoManager; ...
0
votes
1answer
621 views

xCode draw - Trying to maintain color choice in CGRect

I have a simple drawing class. There is a view controller that includes a color selection bar. Then a UIView that has the CGRect draw functions. I can draw ok, but when I change the color, all ...
0
votes
1answer
800 views

xCode - Help trying to add an undo/redo function to a UIBezier Path

I'm trying to add an undo/redo function to an iOS app. I want to be able to draw several lines, then undo each one.. I can erase the whole thing, but that's not good enough... I would really ...
1
vote
0answers
138 views

3D notification alert effet for iPhone

I'd like to implement an internal notification alert in my iPhone application, like the one used by Apple, shown at the top with a nice 3D effect. I've seen some open source projets for that purpose, ...
0
votes
1answer
397 views

How to layer on the CGContext

I'm using a bit of a workaround in order to successfully save an image with a mask (because you can't render masks with CoreAction). Here's my code: CGContextRef context = ...
1
vote
0answers
249 views

Alternative way to capture screenshots (using CG rather than CA)?

So my usual way of capturing a screenshot is this: CGRect captureFrame = CGRectMake(0, 0, 1280, 935); UIGraphicsBeginImageContext(captureFrame.size); [self.bgView.layer ...
-1
votes
1answer
291 views

How do i set a CGContextRef property rather than using UIGraphicsGetCurrentContext()

Ive been trying to work with UIGraphicsGetCurrentContext and CGContextRef. I was told that using UIGraphicsGetCurrentContext() numerous times is bad and to rather work on using CGContextRef and ...
0
votes
0answers
158 views

How to get a transparent image on the edge..only on the edge?

I'm trying to do this with a mask - (UIImage*) maskImage:(UIImage *)image1 withMask:(UIImage *)maskImage { CGImageRef maskRef = maskImage.CGImage; CGImageRef mask = ...
3
votes
2answers
860 views

UIImage face detection

I am trying to write a routine that takes a UIImage and returns a new UIImage that contains just the face. This would seem to be very straightforward, but my brain is having problems getting around ...
1
vote
3answers
798 views

Photoshop Layer Style to CoreGraphics Code

Is there a way to easily export layer styles, created in photoshop, to core graphics code? Maybe a photoshop plugin or a .psd parser for use in xcode. I imagine someone has made (or should make) a ...
0
votes
1answer
678 views

Guide to programmatically drawing in iOS [closed]

I'm looking a good guide for using drawing in Xcode. I prefer to learn by doing so a guide with examples will help me a lot. So far every guide I have found either doesn't work at all or its for an ...
1
vote
0answers
581 views

Mask Image to Round in iOS

I know there are many questions about mask but answers for them didn't help me (just partly). I need to do my image round. I created mask.png and use it in code: - (UIImage*) maskImage:(UIImage ...
0
votes
1answer
387 views

Making sharp edges (vertices) of polygon curve

I had drawn a polygon using UIBezierPath. I need to make its vertices curvy. How can I do that. I used [path addLineToPoint:CGPointMake(xPoint,yPoint)] method to draw lines. I tried using [path ...
-1
votes
1answer
141 views

How to draw Ven Diagram through core-plot or core graphics?

Anybody knows how to draw Ven-Diagram. Please give some ideas!
0
votes
0answers
225 views

missing or invalid `MediaBox' when converting PDF to UIImage

I'm trying to convert a PDF to a UIImage, but I'm getting all sorts of weird errors. I'm not doing the conversion in a drawRect method because I'm not displaying the graphics to the screen. Any ideas ...

1 2