active questions tagged quartz-graphics - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:06:25Zhttp://stackoverflow.com/feeds/tag/quartz-graphicshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779398/iphone-memory-still-allocated-after-releasing-object0IPHONE: memory still allocated after releasing object???Mike2009-11-22T17:47:28Z2009-11-24T02:10:25Z
<p>Hi, </p>
<p>I have a method for drawing an object offscreen to a file, using quartz. The last lines of this method are:</p>
<pre><code>CGRect LayerRect = CGRectMake(mX,mY, wLayer, hLayer);
CGContextDrawImage(objectContext, LayerRect, objectProxy.image.CGImage); // 1
CGRect superRect = CGRectMake(vX, vY, w,h);
CGContextDrawLayerInRect(context, superRect, objectLayer);
CGLayerRelease(objectLayer); // 2
UIImage * myImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext(); //3
return myImage;
</code></pre>
<p>as You see the layer drawn on //1 is released on //2, and the context is released on //3.</p>
<p>So, there's no leak right?</p>
<p>In fact, instruments reports this as having NO LEAKS, but after running this method and returning to the main loop, my application is using 1.38 MB of memory more than before.</p>
<p>Investigating on intruments, on memory allocation tab, I see an entry as</p>
<pre><code>Malloc 1.38 MB
overall bytes = 1.38 MB
#Overall = 1
#alloc =
Live Bytes = 1.38 MB
#Living = 1
#Transitory = 0
</code></pre>
<p>and this entry points to this</p>
<pre><code>CGContextDrawImage(objectContext, LayerRect, objectProxy.image.CGImage); // 1
</code></pre>
<p>So, apparently the memory allocated inside the method is still allocated but is not leaking?? How can that be?</p>
<p>How can I get rid of this memory allocation freeing the memory?</p>
<p>thanks in advance!</p>
http://stackoverflow.com/questions/1773387/iphone-cglayer-using-17-times-more-memory-as-expected0IPHONE: CGLayer using 17 times more memory as expectedMike2009-11-20T21:34:48Z2009-11-24T02:09:14Z
<p>I have created a 800x1200 context using this line:</p>
<pre><code>CGSize sizeX = CGSizeMake(800, 1200);
CGLayerRef objectLayer = CGLayerCreateWithContext (context, sizeX, NULL);
</code></pre>
<p>over this context I have a CGLayer that is 2250x2250 pixels.</p>
<p>This layer (objectLayer) is drawn using something like</p>
<pre><code>CGRect LayerRect = CGRectMake(0,0, layerW, layerH);
CGContextDrawImage(objectContext, LayerRect, myImage.image.CGImage);
CGRect superRect = CGRectMake(0,0, sizeW, sizeH);
CGContextDrawLayerInRect(context, superRect, objectLayer);
</code></pre>
<p>according to my math, a 800x1200 context at 24 bpp, should be using 2.8 Mb and a 2250x2250 layer at 32 bpp should be using 20 Mb. So, in total both should be using about 23 Mb. </p>
<p>The problem is that instruments report just the layer to be using 38.62 Mb !!!!</p>
<p>How can that be? Is that some I am missing?</p>
<p>thanks for any help.</p>
http://stackoverflow.com/questions/777595/best-way-to-accomplish-this-drawing-with-quartz-2d-core-graphics1Best way to accomplish this drawing with Quartz 2D / Core Graphics?Sixten Otto2009-04-22T14:48:14Z2009-11-23T16:51:11Z
<p>As the background for one of the views in my app, I'd like to draw a fairly simple rectangular border just inside its frame. This would essentially be a rectangular gradient: a black line around the frame, fading to white about 10-20 pixels in. Unfortunately, as far as I can tell, Core Graphics doesn't provide rectangular gradients (either with <code>CGGradient</code> or <code>CGShading</code>). So I'm wondering what the best approach would be.</p>
<p>Two that occur to me:</p>
<ol>
<li>Draw a series of concentric rectangles, each subsequent one lighter in color, and inset by 1px on each side. I can't think of a simpler approach, but I have to do all of the gradient calculations myself, and it might be a lot of graphics operations.</li>
<li>Use <code>CGGradient</code> in linear mode, once for each side. But for this to work, I think I'd need to set up a trapezoidal clipping area for each side first, so that the gradients would be mitered at the corners.</li>
</ol>
<p>Seems like there <em>should</em> be a way to use path stroking to do this, but it doesn't seem like there's a way to define a pattern that's oriented differently on each side.</p>
http://stackoverflow.com/questions/1779966/how-do-i-release-this-cgpath-when-i-need-to-return-it0How do I release this CGPath when I need to return itwillc22009-11-22T20:53:51Z2009-11-23T12:18:02Z
<p>I have a method that returns a <strong>CGMutablePathRef</strong>, something like this:</p>
<pre><code>- (CGMutablePathRef)somePath;
{
CGMutablePathRef theLine = CGPathCreateMutable();
CGPathMoveToPoint(theLine, NULL, 50, 50);
CGPathAddLineToPoint(theLine, NULL, 160, 480);
CGPathAddLineToPoint(theLine, NULL, 270, 50);
return theLine;
}
</code></pre>
<p>The Xcode/Clang static analyzer warns that there's a potential leak. The docs say to call <strong>CGPathRelease()</strong> but where would I put that? </p>
<p>If I put that before the method returns won't that cause <strong>theLine</strong> to disappear before it's returned to it's caller?</p>
http://stackoverflow.com/questions/1776567/osx-quartz-event-taps-event-types-and-how-to-edit-events0OSX Quartz Event Taps: event types and how to edit eventsluca2009-11-21T19:55:26Z2009-11-21T19:55:26Z
<p>Here's my code:</p>
<pre><code>#import <ApplicationServices/ApplicationServices.h>
CGEventRef myCGEventCallback(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon) {
printf("%u\n", (uint32_t)type);
return event;
}
int main (int argc, const char * argv[]) {
CFMachPortRef eventTap;
CFRunLoopSourceRef runLoopSource;
eventTap = CGEventTapCreate(kCGSessionEventTap, kCGHeadInsertEventTap, 0, kCGEventMaskForAllEvents, myCGEventCallback, NULL);
runLoopSource = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, eventTap, 0);
CFRunLoopAddSource(CFRunLoopGetCurrent(), runLoopSource, kCFRunLoopCommonModes);
CGEventTapEnable(eventTap, true);
CFRunLoopRun();
return 0;
}
</code></pre>
<p>First.. what if I wanted to edit the event? For example I listen for the keyDown event and if it's an "a" I turn it in a "b", or edit the mouse position in real time, or for example simply capture an event and make it have no effect (disabling a particular key for example..)</p>
<p>Second.. CGEventType is defined with an enum that lists only a few types.. for example when I hit CMD I get a 12, but that doesn't match the value specified in the enum.. what I'm I missing??</p>
http://stackoverflow.com/questions/1771604/iphone-optimized-drawing-in-quartz1iPhone: optimized drawing in quartzMike2009-11-20T16:21:58Z2009-11-21T01:52:25Z
<p>I have created a CG context that is 800 pixels wide and 1200 pixels height. I have created CGLayer over this context that has been transformed (scaled, translated and rotated). So, at some point, as the CGLayer is bigger than the context and has been translated, rotated, etc., not all parts of this CGLayer falls inside the context. See next picture:</p>
<p><a href="http://imgur.com/kSXLG" rel="nofollow">layer and context</a></p>
<p>As you can see by the picture, some parts of the layer falls outside the context area. When I render the final composition using </p>
<pre><code>CGContextDrawLayerInRect(context, superRect, objectLayer);
</code></pre>
<p>it will render the full layer, including those unnecessary parts outside the context.</p>
<p>My problem is: if I can make it draw just the relevant parts inside the context I can make it render fast and save memory.</p>
<p>Is there any way to do that?</p>
<p><strong>NOTE: LAYER contains transparency.</strong></p>
<p>Please refrain from giving solutions that don't involve CGLayers.</p>
<p>thanks in advance.</p>
http://stackoverflow.com/questions/1771940/calayer-filters-and-bounds0CALayer filters and boundsFrank2009-11-20T17:11:33Z2009-11-20T22:44:49Z
<p>Hi,</p>
<p>I'm just starting writing some Core Animation code and I've just spent a frustrating day trying to figure out a particular problem.</p>
<p>I have two layer-backed views that together make up a wizard/ assistant style user interface:</p>
<p>1) a custom background view that fills the entire window with an edge-to-edge gradient and a nice image on the left hand side
2) a smaller framed view on the right that acts as a home for changing dialog choices as you click the "forwards"/ "backwards" buttons: labels, controls, buttons, etc.</p>
<p>I've "stolen" some example code that animates a lighting filter and thus produces a pulsating effect.</p>
<p>I've added the animation and the filter to the custom background view's CALayer. It works fine, but the controls in the smaller framed view also pulsate!</p>
<p>I'm at a loss to understand how that can be the case and I expect the controls to remain unaffected by the filter applied to the layer below it. Surely the CALayer associated with the smaller view should get composited <strong>on top</strong> of the background view's layer and everything on its layer should remain unaffected!?</p>
<p>I've played around with various scenarios and it's clear to me that I'm missing something very basic here.. please help!</p>
http://stackoverflow.com/questions/1742981/thread-safety-of-custom-sequential-cgdataprovider1Thread Safety Of Custom Sequential CGDataProviderMichael Ledford2009-11-16T15:42:21Z2009-11-16T15:42:21Z
<p>When creating a custom sequential <strong>CGDataProvder</strong> to render a custom image format you specify the <strong>CGDataProviderSequentialCallbacks</strong> that should be used. While doing some optimization work to improve the speed of my sequential <strong>CGDataProvider</strong> I started to wonder about the thread safety of those callbacks.</p>
<blockquote>
<p>Let's assume I have created a single <strong>CGImage</strong> with the following conditions:</p>
<ul>
<li>The <strong>CGImage</strong> is backed by the custom sequential <strong>CGDataProvider</strong>.</li>
<li>The <strong>CGImage</strong> is then used to set the contents of a <strong>CALayer</strong>.</li>
<li>The <strong>CGImage</strong> is also used to create a <strong>NSBitmapImageRep</strong> that is then added to an <strong>NSImage</strong>.</li>
<li>The <strong>NSImage</strong> then renders the <strong>CGImage</strong> from the main thread while the <strong>CALayer</strong> renders the <strong>CGImage</strong> from a background thread.</li>
</ul>
</blockquote>
<ol>
<li><p>If the rendering occurs at the same time, what is the thread safety of the <strong>CGDataProviderSequentialCallbacks</strong> and the internal state of the custom sequential <strong>CGDataProvider</strong>?</p></li>
<li><p>Is there anything that the sequential CGDataProvider should be doing that is not mentioned in the documentation?</p></li>
</ol>
http://stackoverflow.com/questions/883596/how-to-get-transition-like-star-trek-app0How to get transition like Star Trek app?4thSpace2009-05-19T15:54:52Z2009-11-15T02:07:15Z
<p>I've modified the ViewTransitions app to use kCAScrollHorizontally. I've set transition in the app delegate to use kCATransitionPush rather than kCATransitionFade. However, I still get fading in and out. How can I get the views to slide in landscape just like the Star Trek app (<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=305916616&mt=8" rel="nofollow">http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=305916616&mt=8</a>)?</p>
http://stackoverflow.com/questions/583202/mac-os-x-can-one-process-render-to-another-processs-window7Mac OS X: Can one process render to another process's window?fixermark2009-02-24T19:26:53Z2009-11-12T21:11:49Z
<p>Greetings!</p>
<p>I'm currently porting a web browser plugin from Win32 to MacOSX. One of the features of the plugin is that when the plugin is loaded, it spawns a separate process that serves as the "engine" of the plugin and executes drawing operations into the window of the plugin (specifically, by attaching an OpenGL context to the parent process's window and executing OpenGL rendering commands into that context). We do this because the plugin is typically loaded as a thread within the browser process, so crashes in the plugin would take down the whole browser. By partitioning the 'heavy lifting' into a separate process and keeping the plugin code very slim, we can protect users against such crashes.</p>
<p>I'd like to preserve this child-process-renderer architecture on MacOSX, but I've heard a nasty rumor (related to the Google Chrome web browser) that MacOSX doesn't allow a process to hand access to its windows to another process. My own search in this space has been inconclusive; if anyone has any knowledge of this problem and could either provide some advice on how to accomplish this goal or a more conclusive "can't be done," it would be extremely helpful.</p>
<p>Thank you for your help!</p>
http://stackoverflow.com/questions/1251072/simple-iphone-drawing-app-with-quartz-2d2Simple iPhone drawing app with Quartz 2DMr guy 42009-08-09T10:06:47Z2009-11-11T13:45:44Z
<p>I am making a simple iPhone drawing program as a personal side-project.</p>
<p>I capture touches event in a subclassed UIView and render the actual stuff to a seperate CGLayer. After each render, I call [self setNeedsLayout] and in the drawRect: method I draw the CGLayer to the screen context.</p>
<p>This all works great and performs decently for drawing rectangles. However, I just want a simple "freehand" mode like a lot of other iPhone applications have. </p>
<p>The way I thought to do this was to create a CGMutablePath, and simply:</p>
<pre>
CGMutablePathRef path;
-(void)touchBegan {
path = CGMutablePathCreate();
}
-(void)touchMoved {
CGPathMoveToPoint(path,NULL,x,y);
CGPathAddLineToPoint(path,NULL,x,y);
}
-(void)drawRect:(CGContextRef)context {
CGContextBeginPath(context);
CGContextAddPath(context,path);
CGContextStrokePath(context);
}
</pre>
<p>However, after drawing for more than 1 second, performance degrades miserably. </p>
<p>I would just draw each line into the off-screen CGLayer, if it were not for variable opacity! The less-than-100% opacity causes dots to be left on the screen connecting the lines. I have looked at CGContextSetBlendingMode() but alas I cannot find an answer.</p>
<p>Can anyone point me in the right direction? Other iPhone apps are able to do this with very good efficiency.</p>
http://stackoverflow.com/questions/1710628/catiledlayer-blanking-tiles-before-drawing-contents0CATiledLayer blanking tiles before drawing contentsGreg Plesur2009-11-10T19:40:34Z2009-11-10T19:49:04Z
<p>All,</p>
<p>I'm having trouble getting behavior that I want from CATiledLayer. Is there a way that I can trigger the tiles to redraw without having the side-effect that their areas are cleared to white first? I've already subclassed CATiledLayer to set fadeDuration to return 0.</p>
<p>To be more specific, here are the details of what I'm seeing and what I'm trying to achieve:</p>
<ul>
<li>I have a UIScrollView with a big content size...~12000x800. Its content view is a UIView backed by a CATiledLayer.</li>
<li>The UIView is rendered with a lot of custom-drawn lines</li>
<li>Everything works fine, but the contents of the UIView sometimes change. When that happens, I'd like to redraw the tiles as seamlessly as possible. When I use setNeedsDisplay on the view, the tiles redraw but they are first cleared to white and there's a fraction-of-a-second delay before the new content is drawn. I've already subclassed CATiledLayer so that fadeDuration is set to 0.</li>
<li>The behavior that I want seems like it should be possible...when you zoom in on the scrollview and the content gets redrawn at a higher resolution, there's no blanking before the redraw; the new content is drawn right on top of the old one. That's what I'm looking for.</li>
</ul>
<p>Thanks; I appreciate your ideas.</p>
http://stackoverflow.com/questions/1615826/iphone-drawing-over-mkmapview0iphone: Drawing over MKMapView?Alex19872009-10-23T20:53:00Z2009-11-10T16:40:01Z
<p>Hi guys</p>
<p>I'm attempting to draw polygons on a mapView. What I did was to add a transparent view on the main view, that matches the bounds of the mapView, and I draw over it. When I move the table it's ok, but when I zoom in and out the polygones 'bounce' on the Y axis (latitude) but the x axis is ok. What do you think? </p>
<p>BTW I tried to add the transparent view as a subview to the mapView but then it screwed up the user interactions.</p>
<p>How can this be done? Help would be appreciated.</p>
http://stackoverflow.com/questions/1489250/uiimagewritetosavedphotosalbum-save-as-png-with-transparency0UIImageWriteToSavedPhotosAlbum save as PNG with transparency?Eli2009-09-28T20:41:36Z2009-11-10T16:38:46Z
<p>I'm using UIImageWriteToSavedPhotosAlbum to save a UIImage to the user's photo album. The problem is that the image doesn't have transparency and is a JPG. I've got the pixel data set correctly to <em>have</em> transparency, but there doesn't seem to be a way to save in a transparency-supported format. Ideas?</p>
<p>EDIT: There is no way to accomplish this, however there are other ways to deliver PNG images to the user. One of which is to save the image in the Documents directory (as detailed below). Once you've done that, you can email it, save it in a database, etc. You just can't get it into the photo album (for now) unless it is a lossy non-transparent JPG.</p>
http://stackoverflow.com/questions/1551324/iphone-quartz-question0iPhone Quartz Questionvickirk2009-10-11T18:10:22Z2009-11-10T16:38:27Z
<p>Hi,</p>
<p>I have an image on a view (UIImageView), simple enough. I'd like to get part of that image, selectively change the colors and overlay that on the view (basically I want to change anything that looks red to green). </p>
<p>Looking though the documentation I can't find anything on how to create an image from a section of another. </p>
<p>Once I've got that I intend to add it to another UIImageView that I'm using as an animation layer on top of the main one, is this a normal way of doing this or is there a better way? My app will have various animations fading in and fading out.</p>
<p>Thanks, Vic</p>
http://stackoverflow.com/questions/1585664/how-to-clear-and-then-redraw-a-quartz-drawing0How to clear and then redraw a quartz drawingAdam2009-10-18T18:31:30Z2009-11-10T16:37:28Z
<p>I'm making a complex drawing using quartz based on passed in information. The only part I haven't been able to figure out is how do I clear the lines, rectangles, etc that I've already drawn? Basically, I want to erase the whole drawing and just draw it again from the new data.</p>
http://stackoverflow.com/questions/1599693/iphone-sdk-creating-an-image-of-the-contents-of-the-screen0iphone sdk: Creating an image of the contents of the screen?Alex19872009-10-21T09:26:04Z2009-11-10T16:37:07Z
<p>Hi guys,</p>
<p>I'm looking for a way to write the contents of the screen to an image. Any idea how to achieve that? Does it involve using Quartz? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1619317/iphone-sdk-i-have-a-quartz-drawing-problem0iphone sdk: I have a Quartz Drawing problemAlex19872009-10-24T22:13:01Z2009-11-10T16:36:10Z
<p>Hi guys, </p>
<p>I have a view (MKMapView) and on it I've a transparent view on which I draw different things. Now I would like to give the user the option to erase things so that the "background view" (the mapView) will be seen in the erased places. Do you think it's possible?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1677984/where-can-i-find-examples-of-quartz-2d-drawing-on-the-iphone0Where can I find examples of Quartz 2D drawing on the iPhone?Mishal2009-11-05T02:37:46Z2009-11-10T16:35:46Z
<p>Hi,</p>
<p>I am going to develope the 2D game in Iphone using Quartz.</p>
<p>what is the main Difference between Quartz and QuartzCore?</p>
<p>I have searched a lot over the internet, but only able to find out the MAC OS with Quartz Examples.</p>
<p>If any body has any Link/URL for Examples of Quartz(2D) using Iphone Developement,which would be run in the Real Iphone Device?
Also if possible than give the Link for Bunch of examples/repository for Quartz Iphone.</p>
<p>Thanks,</p>
<p>Mishal Shah </p>
http://stackoverflow.com/questions/1599476/iphone-dev-pocket-god-used-graphic-engine1iPhone Dev: Pocket God Used Graphic EngineRicibald2009-10-21T08:35:45Z2009-11-10T14:54:00Z
<p>I want to develop a 2d game. I have to choose from Quartz/CoreGraphics, OpenGL ES or Cocos2D. I'm interested in how the game <a href="http://pocketgod.blogspot.com/" rel="nofollow">Pocket God</a> is realized because it fulfills perfectly my needings. </p>
<p>Do you know which technology is used to build the game <a href="http://pocketgod.blogspot.com/" rel="nofollow">Pocket God</a>?</p>
http://stackoverflow.com/questions/1694931/find-a-point-between-two-point0Find a point between two pointMike2009-11-08T00:37:05Z2009-11-08T02:09:18Z
<p>I two concentric circles on the screen and I want the circle on the inside to move around while the user drags their finger around the outside of the larger circle. This means that I have two point, center of the larger circle and the point at which the user touched. How do I calculate where the center of the smaller circle should be? </p>
http://stackoverflow.com/questions/1425760/browser-plug-ins-not-loading-in-webview-implementation1Browser Plug-ins Not Loading in WebView ImplementationZanneth2009-09-15T07:53:18Z2009-11-06T22:51:31Z
<p>I have a Cocoa app that I'm trying to write which displays a webpage. This webpage has an embedded quartz composition in the background that plays and works when in Safari, but it does show in my Cocoa application (it just shows the missing plugin icon in the background instead).</p>
<p>The weird thing is that it works on another computer that I was testing it on. Am I missing a framework or a plugin somewhere that might cause this?</p>
<p>Another note: no plug-ins seem to work. For example, when the WebView displays youtube.com it is unable to play video because it says that Flash Plugin is not installed. Again, the same code works on another computer, but not this one.</p>
<p>Thanks! Any help would be greatly appreciated!</p>
http://stackoverflow.com/questions/1652732/change-screen-resolution-in-snow-leopard3Change Screen Resolution in Snow LeopardReed Olsen2009-10-30T23:09:10Z2009-11-06T16:34:25Z
<p>I've been plugging away at this for a few hours now, and haven't found a good answer. In Leopard, I can programmatically change the screen resolution using Quartz Display Services with <strong>CGConfigureDisplayMode</strong>. Unfortunately, this has been deprecated in 10.6.</p>
<p>This seems like a simple task: how can I change the screen resolution with non-deprecated methods in Snow Leopard?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1676920/overlaid-images0Overlaid imagesMike2009-11-04T21:54:43Z2009-11-04T22:08:34Z
<p>I'm creating an application where I will be drawing two circles onto the screen, one large circle with a smaller circle inside. I want the user to be able to touch/drag on the screen inside or outside of the large circle and it will move the smaller circle in that direction. If the user touches outside of the large circle the smaller circle will not go outside of the larger circle's border. </p>
<p>With the research I've done I can easily draw the two circles inside of each other and handle the movement of the smaller image. However, I don't see an easy way to limit the smaller circle to stay inside of the larger circle. All I have found is clipping but that would just cause the smaller circle to only be partially drawn. Does anyone have a good point of reference I could use to start looking into how this is possible? Thanks. </p>
http://stackoverflow.com/questions/1672743/get-union-of-the-frames-of-several-transformed-uiimageviews0Get union of the frames of several transformed UIImageViews?Meltemi2009-11-04T09:56:24Z2009-11-04T13:40:56Z
<p>I've got a collection of roughly 10 overlapping UIImageViews. Each one is rectangular but each is rotated and scaled separately. Are there any Core Graphics tricks for drawing a path around the perimeter of ALL the images? </p>
<p><strong>CGRectUnion</strong> may give me a rectangle encompassing all the views (though I vaguely remember the frame is undefined once transforms are applied to a view) but the end result of what I'm trying to accomplish should be a fairly complex polygon not a simple rect.</p>
http://stackoverflow.com/questions/1629384/moving-a-uiview-along-a-cgpath-according-to-touch-position0Moving a UIView along a CGPath according to touch positionlxt2009-10-27T08:17:05Z2009-10-27T22:04:22Z
<p>I have a line graph I've drawn in Quartz, and a UIView 'bubble' that I'd like to ideally pop up when the user touches the single plot line, and moves their finger along it. The bubble displays some extra graph information.</p>
<p>I'd like to 'attach' the UIView to the CGPath plot, but I'm having trouble conceptually figuring out the best way to do this. I know you can animate a view along a CGPath, but this doesn't seem to work for me, because the user needs to 'scrub' along the graph themselves with their finger rather than any automatic animation.</p>
<p>Does anyone have any suggestions of a good approach?</p>
http://stackoverflow.com/questions/1597779/uitabbarcontroller-like-image-masking-effect1UITabBarController-like image masking effectdpjanes2009-10-20T23:02:02Z2009-10-23T10:40:30Z
<p>I'd like to recreate the effect that the UITabBarController is doing with images in the tab bar, using exactly the same images. I've futzed around with a number of ideas using masking, but I haven't come up with anything satisfactory.</p>
<p>Anyone have a recipe for doing this?</p>
http://stackoverflow.com/questions/1604341/iphone-performance-differences-in-quartz-drawing-vs-pre-baked-images-which-i-gu0iPhone Performance Differences in Quartz Drawing vs. Pre-Baked Images (which I guess simplifies to Quartz vs. Quartz)iPhoneToucher2009-10-22T00:09:30Z2009-10-22T04:06:06Z
<p>New to Quartz and I am curious on the drawing speeds of simple shapes, gradients, and shadows; specifically comparing Quartz drawing functions to Quartz image drawing on the iPhone.</p>
<p>Say that I need to draw a filled, stroked, and shadowed rectangle. I'm assuming that importing a pre-baked rect as a PNG and drawing it using drawInRect: or drawAtPoint: is faster than using Quartz's drawing functions to draw the same thing, since the latter requires explicit calculations. On the other hand, drawing an image I assume increases memory use and application size since I have to import the image and then alloc it. Does this sound right?</p>
<p>Besides that, are there any big advantages/disadvantages to either technique? As someone who is very familiar with graphics programs and brand new to Quartz, I'm trying to decide if there are any advantages to using the drawing functions in my code as opposed to pre-baking the entire UI and importing the images. </p>
http://stackoverflow.com/questions/1597769/uiview-using-quartz-rendering-engine-to-display-pdf-has-poor-quality-compared-to0UIView using Quartz rendering engine to display PDF has poor quality compared to original.Josh Kerr2009-10-20T22:58:47Z2009-10-20T22:58:47Z
<p>I'm using the quartz rendering engine to display a PDF file on the iphone using the 3.0 SDK. The result is a bit blurry compared to a PDF being shown in a UIWebView. How can I improve the quality in the UIView so that I don't need to rewrite my app to use the UIWebView. I'm using pretty much close to the example code that Apple provides.</p>
<p>Here is some of my sample code:</p>
<pre><code>CGContextRef gc = UIGraphicsGetCurrentContext();
CGContextSaveGState(gc);
CGContextTranslateCTM(gc, 0.0, rect.size.height);
CGContextScaleCTM(gc, 1.0, -1.0);
CGAffineTransform m = CGPDFPageGetDrawingTransform(page, kCGPDFCropBox, rect, 0, false);
CGContextConcatCTM(gc, m);
CGContextSetGrayFillColor(gc, 1.0, 1.0);
CGContextFillRect(gc, rect);
CGContextDrawPDFPage(gc, page);
CGContextRestoreGState(gc);
</code></pre>
<p>Apple's tutorial code actually results in a blurry PDF view as well. If you drop the same PDF into a UIWebView you'll see it is actually sharper. Anyone have any ideas? This one issue is holding a two year development project from launching. :(</p>
http://stackoverflow.com/questions/1592995/comparing-colors-in-objective-c0Comparing colors in Objective-Csshaukat2009-10-20T07:31:46Z2009-10-20T08:13:38Z
<p>Hi! I'm trying to determine if two colors are equivalent, using code written in Objective-C.</p>
<p>I'm using this snippet of code to determine if the two colors are equivalent (currently for debugging purposes)</p>
<pre><code> NSLog(@"currentColor is %@", currentColor);
NSLog(@"Adjacent Color is %@",[[buttonArray objectAtIndex:1] backgroundColor]);
NSLog(@"%i",[[buttonArray objectAtIndex:1] backgroundColor]==currentColor);
</code></pre>
<p>My console is showing</p>
<pre><code>2009-10-20 00:27:10.814 colorGame[13588:207] currentColor is kCGColorSpaceModelRGB 0 0 1 1
2009-10-20 00:27:10.815 colorGame[13588:207] Adjacent Color is kCGColorSpaceModelRGB 0 0 1 1
2009-10-20 00:27:10.815 colorGame[13588:207] 0
</code></pre>
<p>I can post more code if asked (I don't know if any more is really necessary). Current color was initially defined as</p>
<pre><code>UIColor *currentColor;
</code></pre>
<p>if that is any help.</p>
<p>I'm fairly sure I'm just doing the compare wrong, and that there is probably some built-in method that can compare colors, that I'm just not aware of.</p>
<p>THANKS IN ADVANCE!</p>