Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 02-02-2012, 11:21 AM   #1 (permalink)
Registered Member
 
Join Date: Nov 2010
Posts: 82
baramedia is on a distinguished road
Default picture thumbnail from iphone camera

hello,

using the iphone camera and when the user take a picture, i wanna show on the scree a thumbnail of the picture taked then put it in a coin of the screen with a moving animation.
any suggestions how to do that?

ps: i have a controllerview in my app who show the camera view.
baramedia is offline   Reply With Quote
Old 02-02-2012, 11:28 AM   #2 (permalink)
Senior Member
iPhone Dev SDK Supporter
 
Join Date: Aug 2008
Location: Memphis, TN, USA
Age: 24
Posts: 3,983
smithdale87 is on a distinguished road
Send a message via AIM to smithdale87
Default

Can you be more specific about which part you are unsure how to do? Get the picture from the camera? Animations?
smithdale87 is offline   Reply With Quote
Old 02-03-2012, 02:43 AM   #3 (permalink)
Registered Member
 
Join Date: Nov 2010
Posts: 82
baramedia is on a distinguished road
Default

Quote:
Originally Posted by smithdale87 View Post
Can you be more specific about which part you are unsure how to do? Get the picture from the camera? Animations?
yes i will get the picture with the camera then show the thumbnail in the screen and make an animation (moving the picture thumbnail to the coin of the screen)
baramedia is offline   Reply With Quote
Old 02-03-2012, 06:16 AM   #4 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by baramedia View Post
yes i will get the picture with the camera then show the thumbnail in the screen and make an animation (moving the picture thumbnail to the coin of the screen)
"make an animation (moving the picture thumbnail to the coin of the screen)"?!?

Sorry, that makes no sense whatsoever. What is "the coin of the screen?"

What kind of animation do you want? Are you looking for a still snapshot picture, or a video? Are you hoping to put the picture onto a disk shape and rotate the disk shape in 3D, like a coin spinning? You need to use coherent sentences to describe what you want.
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.
Duncan C is offline   Reply With Quote
Old 02-03-2012, 08:22 AM   #5 (permalink)
Registered Member
 
Join Date: Nov 2010
Posts: 82
baramedia is on a distinguished road
Default

Quote:
Originally Posted by Duncan C View Post
"make an animation (moving the picture thumbnail to the coin of the screen)"?!?

Sorry, that makes no sense whatsoever. What is "the coin of the screen?"

What kind of animation do you want? Are you looking for a still snapshot picture, or a video? Are you hoping to put the picture onto a disk shape and rotate the disk shape in 3D, like a coin spinning? You need to use coherent sentences to describe what you want.
thanks for answer,
i wanna (after the user click to take photo) make a thumbnail of the photo taken and show it in the screen center then do a translation (change the position) to the thumbnail from the center to the coin of the screen
baramedia is offline   Reply With Quote
Old 02-03-2012, 09:35 AM   #6 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by baramedia View Post
thanks for answer,
i wanna (after the user click to take photo) make a thumbnail of the photo taken and show it in the screen center then do a translation (change the position) to the thumbnail from the center to the coin of the screen
"the coin of the screen". This phrase makes no sense.

A coin is a small metal disk, use as money.

Do you mean the "corner" of the screen?

Are you writing your posts in another language and using machine translation?

And once we're clear about what you are trying to do, can you describe the part you are having trouble with? What have you tried so far?

There are methods that will re-render a large image at a small size to create a thumbnail image. There are also simple methods that will move an image view across the screen. However, we're not going to write your code for you. Tell us what specific parts you're stuck on.
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.

Last edited by Duncan C; 02-03-2012 at 09:37 AM.
Duncan C is offline   Reply With Quote
Old 02-03-2012, 10:38 AM   #7 (permalink)
Registered Member
 
Join Date: Nov 2010
Posts: 82
baramedia is on a distinguished road
Default

Quote:
Originally Posted by Duncan C View Post
"the coin of the screen". This phrase makes no sense.

A coin is a small metal disk, use as money.

Do you mean the "corner" of the screen?

Are you writing your posts in another language and using machine translation?

And once we're clear about what you are trying to do, can you describe the part you are having trouble with? What have you tried so far?

There are methods that will re-render a large image at a small size to create a thumbnail image. There are also simple methods that will move an image view across the screen. However, we're not going to write your code for you. Tell us what specific parts you're stuck on.
yes i mean the corner of the screen

i create an app, that open the camera and let user take a picture

the trouble that i have is : when the user take the picture, i wanna show the thumbnail of this picture in an UIview and move it (with animated translation) to place it in the corner of the screen, how can i do that ? thank u
baramedia is offline   Reply With Quote
Old 02-03-2012, 11:22 AM   #8 (permalink)
Token farm animal
 
sneaky's Avatar
 
Join Date: Apr 2011
Posts: 321
sneaky is on a distinguished road
Default

To do what you want to do you will have to carry out multiple steps. Just like and programming you will have to break down a complex problem statement into small simple tasks. When you have done that either you have a flow of simple tasks to solve or you find yourself stuck at one, clearly defined problem.

That's not where we are right now, we're all confused. It's like you're trying to bake a cake using only one ingredient and now you're out looking for that one magic ingredient. I'll save you some time, it doesn't exist.

So take a step back and break your problem down into small manageable chunks and if you still have a problem after that then come back and ask specific questions.
sneaky is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 412
16 members and 396 guests
Atatator, chiataytuday, dre, FrankWeller, imac74, ipodphone, jeroenkeij, kukat, LunarMoon, MAMN84, n00b, PowerGoofy, QuantumDoja, Retouchable, tim0504, VinceYuan
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,675
Threads: 94,124
Posts: 402,909
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Retouchable
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 06:05 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0