0

I am new to iOS platform. Is there anyway I can use quartz composer library embedded into my iPhone app? e.g I would like to get RGBA from a particular pixel from an image (UIImage) using IMAGE PIXEL. get-color-image-pixel

OR can i use existing framework in xcode4 to achieve above scenario??? thanks

2 Answers2

2

Have a see Quartz Composer for iOS. That runtime implementation for iOS. This project makes it possible to load, display and interact with .qtz files on iOS.

Good luck

fyasar
  • 3,996
  • 2
  • 42
  • 55
2

No, the Quartz Composer framework does not exist on iOS.

To extract pixel color data from a UIImage, see this question: How to get pixel data from a UIImage (Cocoa Touch) or CGImage (Core Graphics)?

Community
  • 1
  • 1
smokris
  • 11,740
  • 2
  • 39
  • 59
  • thanks.. i used [link](http://stackoverflow.com/questions/448125/how-to-get-pixel-data-from-a-uiimage-cocoa-touch-or-cgimage-core-graphics)'s codes for my app... – Thomas Moe Mar 18 '12 at 17:09