Core Graphics is Apple's framework for low-level drawing operations on Mac OS X and iOS.
1
vote
4answers
354 views
Drawing with with blur effect on image using opengl
I have the same requirement as this question
I am right now at situation where i set UIImage on my opengl view.
Below is the complete code i used to set uiimage. Also it includes the drawing code.
...
0
votes
0answers
34 views
Removing background from a CGPDFRef page
I 'm trying to copy a page from a CGPDFPageRef into a new CGPDFDocumentRef, but I want to remove all white pixels to make them transparent instead in the new PDF.
The basics are simple but I can't ...
0
votes
1answer
89 views
Can't set fill color to CGRect/path quartz
I want to make and fill a rectangle with color. But my code doesnt work (no rectangle appears). Please tell me what's wrong with this code?
- (void)drawRect:(CGRect)rect
{
context = ...
0
votes
0answers
114 views
draw a multicolor line with a CGPath
below you see a code that draws a multicolor line each time drawMulticolorLine is called.
void drawMulticolorLine
{
CGContextBeginPath(secondaryContext);
...
4
votes
2answers
97 views
CALayer: Single pixel line looks like 2 pixels
This is my code:
int columns 3;
int columnWidth = self.layer.bounds.size.width / 3;
for (int c = 1; c < columns; c++) {
CALayer *layer = [CALayer layer];
layer.frame = ...
0
votes
3answers
131 views
Drawing a rectangle in UIView
I am trying to draw a transparent rectangle in my UIView which has a black border.
My code however creates a completely black rectangle. Here's my code so far:
- (void)drawRect:(CGRect)rect
{
...
4
votes
1answer
374 views
color replacement in image for iphone application
Basically i want to implement color replacement feature for my paint application.
Below are original and expected output
Original:
After changing wall color selected by user along with some ...
0
votes
3answers
60 views
Rotate the custom view?
I've some drawings on my custom view, want to let users rotate it
viewContorller.m:
-(void)setMyView:(myView *)myView {
...
[self.faceView addGestureRecognizer:[[UIRotationGestureRecognizer ...
2
votes
1answer
110 views
Drawing a curved highlight tint at the top of a rounded NSView, similar to that seen with the Quartz Composer UI
I have been playing around with a custom view that looks a like the patch object from Quartz composer. My fake Quartz Composer view looks nice enough. It is a single view with 2 different linear ...
0
votes
0answers
164 views
Retina render in context performance issues
I have iPad application that needs to capture contents of view 4 times per second and save as image. I use CALayer renderInContext method and everything is ok on iPad2, but the problem is on iPad4. ...
5
votes
2answers
120 views
How can I make angled corners on a UIView?
There's LOTS of questions on here about making a UIView's corners rounded. Unfortunately I can't find anything for how to make angled corners. How can I make a UIView with corners cut at a 45 degree ...
0
votes
1answer
96 views
cgimagecreatewithmaskingcolors changes all the transparent region to black
I am using CGImageCreateWithMaskingColors() to remove particular color from the UIImage. The color removal process works fine but the transparent region in the image turns black after masking ...
-4
votes
1answer
61 views
Flip animation on a subview [closed]
Need to add an animation:
When i click on a product , a subview with product details will be added.
There is on animation on the products view but the product details subview will be added with a ...
0
votes
0answers
27 views
Is there a way to check if a UIImage has been decompressed?
I'm sure most of you have dealt with forced decompression on a background thread to enhance rendering performance. My question is whether there is a way to check if an image has been decompressed.
0
votes
1answer
62 views
2D Point, to 3D, then back to 2D
Figure 1:
I am drawing a bezier on a layer in 2d (CoreGraphics), I have point A & B.
Figure 2:
I can rotate the layer approximately 70 degrees.
Figure 3:
I want to know what the points A & ...
1
vote
0answers
78 views
How can I set a CALayer delegate to use for Core Graphics drawing?
I am trying to understand how I can use Core Graphics to draw on my CALayer. So far I think I know that I should set a controller object as the delegate of the layer, and then call my CG commands in ...
0
votes
2answers
38 views
CoreGraphics determining click position in simulator - undefined symbol for architechture i386
I am working with dynamic table view. As was suggested in previous reply
(How to know the UITableview row number) I try to use CGPoint.
CGPoint hitPoint = [sender convertPoint:CGPointZero ...
0
votes
0answers
28 views
Build a UIImage with multiple image object [duplicate]
I have a few UIImage objects which I want to compose into a single UIImage and draw the UIImage objects in there using something like CGContextDrawImage . Here i have drawn the images but when i apply ...
2
votes
3answers
155 views
How to Get Real World Object Size?
I am taking image from camera. So i want to get original object width and height,also
user can take image by zoom IN or zoom OUT.For that I am using UIImagePickerController.
e.g If 15 inch ...
-3
votes
2answers
108 views
Render a single UIImage and rotation has to be applied
I have rendered few UIImage objects using CGContextDrawImage. But when i apply rotation to the image, it is not applied and the view disappears.
code here
-(void )renderImage: (ItemView *)array
{
...
0
votes
1answer
80 views
How to right align text using Core Graphics
I'd like to right align several text when drawing using Core Graphics. Below is the code I'm using to draw text now. How can I draw several texts that are right aligned?
CGContextSelectFont(context, ...
1
vote
1answer
488 views
Create a Round Gradient Progress Bar in iOS with CoreGraphics
I want to make something like this:
I tried to make it with core Graphics like this:
float radius = CGRectGetWidth(rect)/2.0f - self.circleBorderWidth/2.0f;
float angleOffset = 0;
...
0
votes
1answer
136 views
core text view memory leak
I have created a core text view and visually it's working great but i run it for 30 minutes with a lot of data coming in and it crashes. The debugger starts saying 'received memory warning'. I think ...
2
votes
1answer
147 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 ...
7
votes
1answer
960 views
Create and and export an animated gif via iOS?
I have a series of user-customized images within an iOS app that are being animated in a simple, frame-by-frame flip book style.
My question is this: is there a way to allow users to export their ...
6
votes
2answers
288 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 ...
2
votes
1answer
84 views
How to erase a circle in core-graphics
I am developing a drawing app using Core-Graphics. For the eraser I used kCGBlendModeClear. It erases my drawing in a square shape. Here is the code:
   Â
context = ...
0
votes
1answer
73 views
CGContextSaveGState performance
I am working on a app with image editing utilities where i use CoreGraphics,in few scenarios the images are huge which is fetched from the server.Does CGContextSaveGState using often has impact on ...
1
vote
1answer
53 views
How can I extract only the white pixels from a UIImage?
I need to use some existing images with some white icon glyphs inside them and extract only the glyph part . Imagine the iPhone's Phone.app icon, which is green around, and has a white telephone icon ...
0
votes
1answer
141 views
NSView drawRect and retina images
Because, I need some advanced menubar item, I'm using custom NSView subclass as a view for menubaritem.
In drawrect I'm drawing some simple nsimage, and It works fine with normal displays, but on ...
0
votes
0answers
45 views
Apply gradient color to arc
I am trying to build piechart with gradient colors for arcs. I use following code to create arc. Could someone please tell me how to apply gradient color to only arc area and not to whole rect?
- ...
0
votes
2answers
154 views
CGContextSetShadowWithColor not showing on device
I have a custom UIView which is a rectangle with rounded corners a drop shadow and a small border.
- (void) drawRect:(CGRect)rect {
//// General Declarations
CGContextRef context = ...
2
votes
2answers
108 views
Where and how to __bridge
I need some advice on __bridge-ing in iOS.
Hopefully this SSCCE will explain the problem better than I can in words, but I need to know how I can convert a void* to an NSMutableArray*; which __bridge ...
0
votes
0answers
81 views
Losing my Emoji, probably in UTF8String
I'm doing this type of thing:
const char *cstring = [textIn UTF8String];
and then later I do this:
CGContextShowText(ctx, cstring, strlen(cstring));
I'm losing my Emoji in the process, though ...
0
votes
1answer
114 views
Blurry Images when rendering to PDF using UIKit/Coregraphics
Everything seems pretty standard I downloaded PDF GENERATION SAMPLE and used my own assets at normal resolutions and my images look a little off.
Here's the asset
Here's what it looks like in app
...
1
vote
1answer
167 views
Shadow inside text on NSTextField/NSTextFieldCel
I've been trying for a day or two to try and get a shadow to draw inside the text of an NSTextField (and making the foreground color transparent, so all you see is a shadow inside the text). I've yet ...
0
votes
0answers
32 views
Decreasing the xStep for a dotted line pattern causes offsetting bug in pattern
I'm writing code that creates a dotted line pattern on a PDF. I wanted the dots to be a little closer together but it starts offsetting the first dot causing it to be clipped. I don't quite understand ...
0
votes
2answers
158 views
UIBezierPath Rectangle with Circular Handles
I'm trying to draw a rectangle which has four circular handles. Here's what it would look like:
o----o
| |
| |
o----o
The circular handles are "hot". In other words, when the user touches ...
3
votes
4answers
106 views
Why are some libraries in iOS provided by C-based API?
Why are some libraries in iOS provided C based API? For example, Core Graphics library is provided by C based API. But, I can't understand the reason why Apple did it.
Moreover, [[UIColor red] ...
0
votes
1answer
181 views
Core Animation: set anchorPoint on 10.8 to rotate a layer about its center
NB: This is for a Cocoa app on OS X, NOT iOS.
I have a layer-backed NSButton (subclass of NSView). What I want to do is rotate that button using Core Animation. I'm using the following code to do ...
0
votes
0answers
34 views
Generating app image assets with core graphics
I am trying to generate all of my app's image assets at runtime using Core Graphics. Below is a sample snippet.
+ (UIImage *)textFieldRect:(CGSize)size {
if ...
0
votes
1answer
32 views
iOS CGContextSetRGBFillColor too few arguments
I am building a PDF generator class in my app and setting up methods for drawing text, lines and images...
for some reason I can't seem to pass a UIColor with a CGColor conversion to ...
1
vote
3answers
45 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 ...
0
votes
0answers
71 views
Memory Allocation issue using CGContextRef
I am drawing a rectangle but it's taking a lot of memory allocation. Due to that my app is crashing. Now after removing that code my app is running smoothly. Can I get some idea how to handle this ...
0
votes
1answer
103 views
How to encode UIBezierPath to SVG?
I have a simple view for finger painting / drawing. I store the drawings as UIBezierPaths in a NSMutableArray. Now I want to transfer the drawings to a web-service for presenting them in a browser. ...
0
votes
0answers
71 views
Ways to use relative (as opposed to absolute) mouse movement in OS X?
I'm working on a python application that controls mouse movement.
I have absolute mouse position working perfectly, using the Quartz.CoreGraphics library, which exposes some CGEvent commands for ...
1
vote
1answer
220 views
Partial screen capture in Objective C
I have been trying to figure out how to create an OS X routine in objective C that:
run in the background (separate thread) and
repeatedly (timed or when certain criteria are met) captures several ...
1
vote
0answers
61 views
Why am I seeing artifacts from subview edges in images rendered from a UIView?
I have a view (viewA) that is comprised of a grid of subviews. I am rendering viewA's layer to an image context and seeing lines between the subviews. These lines are not there in screenshots, just ...
0
votes
1answer
88 views
How to draw any PNG format in Core Graphics
We have code that creates a CGImage from a PNG data provider, and then draws it on a CGBitmapContext. Most PNGs work fine, but some PNG formats are not supported (see here), so we get a NULL context. ...
0
votes
1answer
144 views
Sibling NSView z-ordering in Cocoa
How does z-ordering work with sibling NSViews in Cocoa? I'm confused because I'm finding conflicting sources of information in Apple's docs and APIs. (Note: Subviews are obviously rendered on top of ...



