How to create app like iBooks [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is it possible to create app like iBooks?
I want to create app like iBooks. I want to know how i can curl the page of pdf.
Please share your ideas to create this app.
Thanks

Check out this library, might be a good starting point:

You probably want to do something like render the page as a texture to a 3d surface that is initially flat, which you could then deform and animate to provide the curling animation.

Related

How to set iPhone lock screen background programmatically? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am interested to develope an app which will show quotes on the lock screen of my iPhone. I want app like following image.
I am trying to do it but not getting any idea.
Please help me so I can start working on it.
This is not possible, the SDK does not let you do this.
As #Toam pointed out, the SDK does not allow you to set the lock screen background. However, you can kinda-sorta get around this. If you're willing to play a little music, you can set your own images/text to the lock screen in playback mode. Details can be found here: https://stackoverflow.com/a/8387406/716216

Give smooth effect of UIImage Stratch [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am Creating one application and i required following effects.
I don't know hot to start work. if any one know what is my first step for this effect then please guide me for how to stretch Hair like this.
effects Link1
effects Link2
I used following link and tutorial but not succeeded.
http://code.google.com/p/faceworkshop/
http://code.google.com/p/imgwarp-opencv/
http://docs.opencv.org/doc/tutorials/ios/table_of_content_ios/table_of_content_ios.html#table-of-content-ios
I think, I am going to wrong way...Plz help me.
The effect look alike it's an OpenGL object with a texture where you change the coordinates of the vertex nearest to the touch point. The OpenGL object has to be constructed out of triangles matching the form, which is probably done based on the hair image.

GPU Image Filter [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In my app, I want to apply different video filters like: Fade in -Out,Snow fall,Rainbow,Fast Motion,Slow Motion,etc.
I study the Brad Larson project but it does not full fill my all filter requirement.
so, Help me!!
If you need custom filters you can always write them and add to GPUImage project. Just grab some easy filter like GPUImageRGBFilter or GPUImageLineGenerator and experiment.
You can also modify OpenGL calls directly to inject your custom effects in front of a movie. Take a look at CubeExample.

can i import 3d image in my iphone app? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i m new to iphone/ipad application development, can we import 3d image in my iphone/ipad
app. or there any other controls available to display 3d image. i also want to give actions
to image on particular sections. can any one help me.
Thanks...
The answer is yes. Check out OpenGL samples for iOS. Just google and you will find many.

iphone opengl es how to add an image as the background? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
this is a project of opengl es, you can run it on iphone sdk,
i want to know how to add an image as the background?
https://docs.google.com/open?id=0B8MGSbywP-HXY2YxYzk3YWItNzk3Zi00ZmNiLTk5NWYtOGY3NmU0OTRlYTM4
please give me source code.
By drawing the picture as the very first thing (in form of a textured quad). Disable depth testing and depth writes.
Update: Code for some project
Note: The actual code and structure strongly depends on the program in question!
// one possible structure
void draw(draw)
{
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
glDisable(GL_DEPTH_TEST);
glDepthMask(GL_FALSE);
draw_background();
glDepthMask(GL_TRUE);
draw_rest_of_scene();
}