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.
...
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...
Is it possible to convert a vector image into Quartz 2D code (mac) so that
image can be drawn programmatically?
...
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 ...
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...
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
...
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. :(
...
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...
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...
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...
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 ...
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.
...
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...
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...
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 ...
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...
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!
...
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 ...
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.
...
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...