Core Graphics is Apple's framework for low-level drawing operations on Mac OS X and iOS.
1
vote
0answers
16 views
CGImageCreateCopy vs. CGImageRetain
A CGImageRef doesn't appear to have any mutating operations. Copying a CGImageRef does not copy the CGDataProviderRef (determined through experimentation). So if CGImageRef is an immutable type, is ...
2
votes
3answers
162 views
How to Get Real World Object Size?
I am taking image from camera. So i want to get object original width and height.For that I am using UIImagePickerController.
e.g If 15 inch monitor is place on table. so when I take image from my ...
0
votes
4answers
4k views
Xcode - Drawing Pixels
I am trying to draw individual pixels in xcode to be outputted to the iphone. I do not know any OpenGL or Quartz coding but I do know a bit about Core Graphics. I was thinking about drawing small ...
1
vote
1answer
26 views
How to ensure selected state of subclassed UIButton is drawn even when touch happens fast
I have subclassed UIButton in order to do some custom drawing with CoreGraphics in drawRect:. In order to respond to touch events, I am adding these target/actions:
[self addTarget:self ...
-1
votes
0answers
19 views
Need chart for fiilling from web service [closed]
I did not found any sample for chart filling from soap.I found for JSON and manual input values for graph.I need display sales from soap in my app.Where I need to get start?
0
votes
2answers
129 views
appendPath to produce hollow object Core Graphics
So I am trying to create a segment of a circle ie a pie slice then use a circle to remove the majority of the wedge leaving an outer arc.
This is what I have so far
As you can see it is messing up ...
0
votes
0answers
8 views
Core Graphics: open raw file without “Raw Fine Tuning”
I can open supported camera raw files using core graphics with CGImageSource and access pixels for further processing. But Apple applies a tone curve on the files, known in Aperture as "Raw Fine ...
1
vote
1answer
264 views
iphone UIView how to render a layer at a specific point?
I'm creating a pdf by hand and need to render a few images within a view. The images have their frames defined in a template nib file. However, I cannot seem to find a good way to render these images ...
1
vote
1answer
1k views
CGPathRef vs. CGMutablePathRef
In iOS there are two C structs that denote paths that describe drawable shapes: CGPathRef and CGMutablePathRef. From their names it would seem that CGPathRef refers to a path that once created cannot ...
0
votes
0answers
21 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
12 views
Rendering a gradient in a UIBezierPath
How does one render a gradient inside a UIBezierPath and is it possible to store this state together with the bezierPath for faster re-rendering in drawRect?
I currently render bezierPaths inside ...
13
votes
2answers
5k views
Can't add a corner radius and a shadow
I'm trying to draw a shadow and a corner radius on an image. I can add them separately, but I've got no way to add both effects at the same time. I'm adding a shadow with:
[layer ...
0
votes
4answers
52 views
Overriding drawRect method in a UIView subclass & call it into another UIViewcontroller
I am a novice ios programmer and this is my first project.I am going to develop this project specifically for ipad. In this project i need to draw several circles & display data on it by parsing ...
1
vote
3answers
170 views
drawing shadow around a view slows down my transition,CALayer,ios
MyViewControllerB.xib contains
view( UIView )
|
|__image (UIImageView)
|
|__view (UIView)
|
|__text (UITextView)
|
|__view (UIView) ( shadow is adding at here )
Then I am adding a ...
0
votes
1answer
40 views
Core Graphics memory leaks while displaying pdf images
I have a subclass of UIImageView view that loads pdf image data, so that I can have a resolution independent graphic in my view. Works well for the stated purpose, but I am getting memory leaks with ...
0
votes
2answers
52 views
Drawing in another thread with CGImage / CGLayer
I have custom UICollectionViewCell subclass where I draw with clipping, stroking and transparency. It works pretty well on Simulator and iPhone 5, but on older devices there is noticeable performance ...
0
votes
2answers
69 views
A view with a shadow
I am looking for the way to write an effect like the image above (from the Groupon app) for a view. Using the code below, I tried to get a shadow going, but it's not working. The effect I am ...
0
votes
0answers
28 views
How do I resize a UIImage without smoothing? [duplicate]
I have a 16x16 UIImage. I want to convert that into a 128x128 UIImage without losing the sharpness. I will be putting the resulting image straight into a UIImageView.
These are the images start is on ...
2
votes
1answer
35 views
How to create a QGLWidget from a CGLContextObj?
I'm using Qt 4.8.4 on Mac OS 10.8.
I already have a CGLContextObj (created outside my control).
I would like to create a QGLWidget from (or at least shared with) my existing CGLContextObj — so I can ...
1
vote
0answers
27 views
Optimize UIBezierPath drawing
I have a problem that I was hoping that someone in the community may have some expertise in. I am working on a drawing app. It's too much to get into as far as what it does and why, but at each ...
0
votes
1answer
47 views
Core Graphics - how to crop non-transparent pixels out of a UIImage?
I have a UIImage that is reading from a transparent PNG (500px by 500px). Somewhere in the image, there is a picture that I want to crop out and save as a separate UIImage. I also want to store the X ...
0
votes
1answer
36 views
Add Opacity to CGPath
CGPathRef defines an opaque type that represents an immutable graphics path. CGMutablePathRef defines an opaque type that represents a mutable graphics path.
But how do we change the opacity in the ...
0
votes
1answer
31 views
Multiple paths are not kept on screen
I have an custom UIView. I keep on the lines and points when the finger touches moves. Then I make points to CGPath with this method:
- (void)makeCGPath
{
CGMutablePathRef path = ...
2
votes
3answers
2k views
How do I create a new image by drawing on top of an existing one using Quartz?
i have a view with uiimageview i assign this uiimageview image by camera..now i want to do some drawing onto image....using coregraphics.i want to do something like this... select an area by touching ...
0
votes
4answers
4k views
Drawing simple lines on iPhone with CoreGraphics
I would like to draw a straight line between where a user touches the screen, and where the touch ends. i need multiple lines, for if the user repeats the touch-drag-release action, and I also need a ...
2
votes
2answers
979 views
CGContextShowText is rendering upside down text (mirror image)
Without my doing anything to request upside down text, CGContextShowText is drawing it in that fashion. It is a mirror image vertically of what it should be.
float font_size = 19.;
...
7
votes
5answers
11k views
How do you load a local jpeg or png image file into an iPhone app?
Or I should ask why is it so difficult for me? The answer is probably that I'm new to iPhone development and I'm trying to ditch my old methods and step into the new platform of the future. From ...
0
votes
1answer
43 views
Generate a CGPath from another path's line width outline
I might not be explaining this in the best way possible, so please bear with me.
What I have is a drawn CGPath on top of a MKMapView object:
The way I was able to achieve this is to create a ...
1
vote
1answer
8k views
draw a line in UIImageView problem
In my application i can draw a line in a UIImageView by the code below,and i want redraw the line even longer when i call the function,however,the output come out is not as expected,it will just draw ...
2
votes
1answer
25 views
How do I draw into a bitmap without antialiasing/interpolation in iOS?
I'm trying to programmatically draw into a UIImage like so:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
...
0
votes
1answer
56 views
Using circular progress bar with masked image?
I am working on a circular progress bar for custom game center achievements view and I have kind of "hit the wall". I am struggling with this for over two hours and still cannot get it to work.
The ...
0
votes
1answer
42 views
How do I programmatically draw to a display in iOS?
I have a method of drawing to the screen that has many benefits for my application except for the small issue that it doesn't work... at all.
I have an iOS program with a UIImageView widget and I'm ...
0
votes
2answers
43 views
Why does this not dot the line correctly?
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(currentContext, hh2DarkGray.CGColor);
CGFloat lengths[] = {0, 8};
CGContextSetLineCap(currentContext, ...
4
votes
1answer
4k views
converting CMSampleBufferRef to UIImage
i always get : CGImageCreate: invalid image size: 0 x 0.
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
// Enumerate just the photos and videos group by using ALAssetsGroupSavedPhotos.
...
0
votes
0answers
21 views
Changing coordinates of CoreGraphics to top left causes ShowText to render upside down
I have configured a CGContextPDF so the (0,0) coordinates are at the top left and not the bottom left using the following:
context.TranslateCTM(0, height);
context.ScaleCTM(1, -1);
However, now ...
1
vote
1answer
38 views
Can I use UIBezierPath to draw a shadow image around a UITableView section?
I have a shadow image that I would like to draw around the outer edge of a grouped UITableView section. This is the image:
I can get the UIBezierPath that represents the rect I want to draw around, ...
4
votes
3answers
772 views
How to get the real RGBA or ARGB color values without premultiplied alpha?
I'm creating an bitmap context using CGBitmapContextCreate with the kCGImageAlphaPremultipliedFirst option.
I made a 5 x 5 test image with some major colors (pure red, green, blue, white, black), ...
0
votes
2answers
42 views
How to draw an Arc using core draw
I want to draw an arc like in the following figure using core draw.
Not exactly same but I have background images set. I need to draw arc based on the file download. Now the percentage of download ...
0
votes
2answers
45 views
Interface building - UIViews vs Images vs Core graphics vs PDF subclass
My app uses flat graphics, which mostly consists of lines and flat surfaces...
Whats the best approach for building the UI?
use PNG images as much as possible (like for the attached picture, the ...
0
votes
3answers
26 views
iPhone : How to get colour of each pixel of an image?
I want to get color of all the individual pixels of an image.
To elaborate
Let say I have an image named "SampleImage" having 400 x 400 pixels
Basically I want to create a grid from 'SampleImage' ...
2
votes
3answers
55 views
iPhone : How to change color of particular pixel of a UIImage?
I have a UIImage, I want to change colour of its particular pixel, say 224 x 200th pixel. How can I do this? Is it even possible to do? Thanks in advance.
1
vote
3answers
77 views
Fit Polygons Together
How to eliminate the boundary between triangles?
I'm implementing export-to-pdf in my triangle drawing app. The image above shows what the pdf output looks like. There are white boundaries ...
0
votes
1answer
31 views
Is CGPathContainsPoint() hardware accelerated?
I'm doing an iOS game and would like to use this method for collision detection.
As there are plenty (50+) of points to check every frame, I wondered if this method runs on the iDevice's graphics ...
0
votes
2answers
24 views
Image rotating left when taking picture with iPad
In the application I'm working at you can take a picture with the iPad camera. After that using CoreGraphics you can draw shapes on that image.
At first the image was upside down and mirrored. I ...
0
votes
1answer
26 views
Change direction in stroke animation
I want to revert the direction of a path drawing. So I changed fromValue and toValue propeties, but now full path is visible at the start of animation and it begins to disappear.
I have the path:
...
-2
votes
0answers
36 views
Programmatically cropping UIImages in iOS [duplicate]
I have a UIImage that contains a photo. The image has a squiggly-line overlay that's created when someone draws it by hand. This overlay is always closed i.e. forms one complete loop. How can I ...
2
votes
2answers
288 views
How to add an alpha layer over part of UIImage in drawRect?
I am completely new to implementing custom drawRect method (and Core Graphics) but am doing so to improve the scrolling performance for my UITableView. Please do let me know if I am doing anything ...
0
votes
3answers
2k views
UIView opacity gradient
Is it possible to have a UIIView with a textured background image and an opacity gradient? i.e., the bg image should fade in from left to right against the background container view.
thanks
0
votes
2answers
52 views
Which method to use to display text ?Why?
When drawing using CoreGraphics to draw a string/label we have 2 methods
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(NSLineBreakMode)lineBreakMode ...
1
vote
3answers
853 views
How to set a background color for the drawing canvas created with CGBitmapContextCreate()?
I assume that the background is transparent automatically if I use the device color space (RGBA, so with alpha). But I'm not sure.
How can I set the background color of my drawing canvas or bitmap ...





