quartz

Using Quartz with Spring

In my application there is a requirement to be able to create Scheduled Job(s) depending on the type of Request that comes in (Dynamically). Can I still use Spring to create and trigger Jobs? If Yes, how? Any help would be useful. ...

NSImage color shift on Snow Leopard

My app creates NSImages by compositing various other NSImages together. The original images are loaded from files using [NSBitmapImageRep imageRepWithContentsOfFile:]. The final image is then displayed on the screen. A few 10.6 customers have reported that the image they see (sometimes) has shifted colors. Specifically, all of the brigh...

Converting vector image to Quartz 2D code

Is it possible to convert a vector image into Quartz 2D code (mac) so that image can be drawn programmatically? ...

how to configure quartz in netbeans

Hi all, I have downloaded quartz scheduler.I wrote a program for generating random numbers for every 2 mins.I want to configure this program with quartz scheduler.I searched through the net but i am unclear with this.could anyone tel the steps to configure quartz with my program and how to use it.I want to run this in netbeans ide.All ...

Using the grails Quartz plugin without Hibernate

I am working on a backend Grails application that pulls information periodically from a RESTful service. To do this I installed the Grails Quartz plugin. grails install-plugin quartz I then created a job using grails create-job My which geneates a MyJob file which I configured with a cron trigger static triggers = { cron name...

iPhone Quartz Demo, rerender PDF

Hi guys, How should I modify the QuartzDemo that comes with the iPhone so that it re-renders the PDF view like UIWebView does when you zoom in? Cheers Nik ...

Program that generates Quartz code

Maybe this isn't a programmer question, but I read about an application for Mac some time ago, where you can make things in an UI, and then the program generates Quartz 2d code for the iPhone from what you've made. Does anyone know what I'm talking about? Very hard to find. :( ...

What should I learn Quartz or OpenGL ES?

I'm learning to program for the iPhone. I'm trying to figure out how to do some really cool custom view animations. What should I learn, Quartz or OpenGL ES? For whoever says OpenGL ES, could I use it to animate my views or is only Quartz suitable for the task? Thanks. Also any resources / the book or anything that teaches you this stu...

Running a task in background using Quartz plugin

I'm planning to have a view that presents a button so that when it is clicked, it will run a Quartz job and the page will finish loading successfully (no need to wait for the job to finish). Based on this documentation, you can have a custom trigger class. Can you help me implementing it? My job: class ReconciliationJob { static tr...

Verifying a cron expression is valid in Java

I'm writing a scheduling application in Java using Quartz. I'm using the CronTrigger, but my cron expressions are entered into a database before they are scheduled and are based on user input. Is there a way I can verify that the cron expressions are valid when I capture them? I'd rather do this and give the user an appropriate error me...

(Design Idea) Best Practise to wake up multiple process to do workflow

Hi all I 'm designing multiple process workflow engine. I deploy 4 services on Websphere and finding idea how to wake up them. Current solution is 1 Quartz will wake up process every minute , if last process already running, this process will not run duplicate ( use java's static variable to control) . 2 Process query maximum to ...

Learning Quartz and/or openGL for iPhone resources?

I am interested in learning how to program game graphics for iPhone OS (3.x and beyond...). Can anyone recommend (based on personal experience) good books/websites that deal specifically with Quartz/OpenGL ES programming. Thanks. ...

IKImageView resize is blocky

I am putting an image into an IKImageView, and immediately sizing it to fit. Whenever I do this, the image originally appears at 1-1 size (huge) and then resizes down, which would be fine if the animation was smooth. However, the animation looks ... fluttery? There are big blocks, like 2 inches square, of the image that appear and shrink...

CALayer and Quartz Transparency

I have a CALayer subclass. I have overridden the drawInContext method. I want the majority of my layer to be transparent except a few areas. I'm using the layer as a menu and I want the icons and labels on the menu to be opaque. Is it possible to have a CALayer's sublayers be opaque if the super CALayer is transparent? Is it possi...

Setting up a view to draw to in Objective-C (iPhone) ?

Okay, so, I'm all new to iPhone and stuff, but I'm not even at programming, I have many years of experience with ActionScript 2.0 and 3.0, I want to set up a view, that I can also pass variables to. The view is gonna draw everything with Quartz. I tried to make another game where I tried to add a pointer to a NSMutableArray to the view ...

Quartz drawing help - CGLayer, UIGraphicsBeginImageContext, UIGraphicsGetCurrentContext

I'm trying to put together a simple example of using some of the quartz api. specifically i'm working on trying to draw an image to a CGLayer to cache it. Then draw that layer to another graphics context more frequently. Here's some source code for the example: header: http://pastebin.com/1qKnexDt class: http://pastebin.com/60FRj5dZ T...

Quartz Composer in iPhone UIView

Hi everyone, I am trying to embed a Quartz Composer document in an iPhone app. I know Quartz Composer support was added in iPhone OS 3.1 (at least, that's what Wikipedia says) but I can't find any good resources on how to do this. Do I use CGContext? Or are there more friendly ways to add a Quartz Composer composition? Thanks! ...

iPhone clip image with path

I would like to clip an image with path. In the book Programming with Quartz there is an example on how to draw a circle clipped by a rectangular path (p.37), and there is also a chapter on image masking with existing image as stencil (Ch.10). But I'm still not sure about how to clip an existing image using path. Is there any example or ...

Change colour of standard progress bar using Quartz filters

I need 2 different colours: Yellow, Green. Is it smart to use Quartz filters on standard progress bar, because sometimes I can see rendering problems after doing so. ...

iPhone Dev:Blurring of CALayers when rotated

Hello All, I have a CALayer with a png image as its content.When rotation is applied the layer looks blurry. I've searched for a cause for this problem and found out that the problem might be the half pixel problem, which makes the layer blurry if its frame.origin lays on fractions like 96.5, and they suggest to make the origin a whol...