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 09-18-2011, 10:07 PM   #1 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Smile HELP! PHOTO EDIT&POST problem!

I am developing an iPhone photo-editing application for my school.

Few things NOT working correctly:

1) Upload photos to Facebook.
2) Upload photos to Flickr.
3) Adjust image brightness, contrast etc from (GLImageProcessing)
4) Image that was edited will be rotated if that particular image is used again for photo editing.

Anyone willing to help me out please tell me so, I will send you my project and let you have a look. I'm just a beginner so please help me along. Thanks!
aimerlapile is offline   Reply With Quote
Old 09-18-2011, 10:08 PM   #2 (permalink)
Just helping out.
 
Domele's Avatar
 
Join Date: Feb 2011
Posts: 2,565
Domele is on a distinguished road
Default

No one is going to look at your project for you, at least not for free.

For 1 and 2, use Sharekit.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.

New app - See screenshots and details at www.globaclock.com.

If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.
Domele is offline   Reply With Quote
Old 09-18-2011, 10:43 PM   #3 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Default

Quote:
Originally Posted by Domele View Post
No one is going to look at your project for you, at least not for free.

For 1 and 2, use Sharekit.
Thanks! But sharekit isn't working anymore.
aimerlapile is offline   Reply With Quote
Old 09-18-2011, 10:58 PM   #4 (permalink)
Registered Member
 
Objective Zero's Avatar
 
Join Date: Oct 2010
Posts: 1,210
Objective Zero is on a distinguished road
Default

Why? Not working anymore is a pretty bad way to explain why something isn't working.
Try to answer these questions:
1. What are you trying to accomplish
2. What did you try?
3. What happened instead? If there is a crash, post the crash log and line the app crashes on.
__________________
Questions?

Check out my OCR app!
http://itunes.apple.com/app/ocr-pro/id486512712?mt=8
Objective Zero is offline   Reply With Quote
Old 09-18-2011, 11:04 PM   #5 (permalink)
Just helping out.
 
Domele's Avatar
 
Join Date: Feb 2011
Posts: 2,565
Domele is on a distinguished road
Default

I'm going to guess he doesn't have API keys.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.

New app - See screenshots and details at www.globaclock.com.

If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.
Domele is offline   Reply With Quote
Old 09-19-2011, 01:09 AM   #6 (permalink)
Registered Member
 
SundialSoft's Avatar
 
Join Date: Oct 2010
Location: Scotland
Posts: 176
SundialSoft is on a distinguished road
Default

Quote:
Originally Posted by aimerlapile View Post
I am developing an iPhone photo-editing application for my school.

Few things NOT working correctly:

1) Upload photos to Facebook.
2) Upload photos to Flickr.
3) Adjust image brightness, contrast etc from (GLImageProcessing)
4) Image that was edited will be rotated if that particular image is used again for photo editing.

Anyone willing to help me out please tell me so, I will send you my project and let you have a look. I'm just a beginner so please help me along. Thanks!
Uploading a photo to facebook is straight forward IF you follow the correct steps.
Register as a developer with Facebook.
Set up an app on facebook for testing (you need the IDs that gives you)
download the latest Facebook api from githut. (make sure it says its the up to date official one).
Put the FB app IDs into the sample app which comes with the API & get that working.
Once that's working write your own app. The actual code to upload an image is something like this:-
Code:
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               message, @"message",    pImage, @"source",nil];
    [facebook requestWithGraphPath:@"me/photos" andParams:params andHttpMethod:@"POST" andDelegate:self];
where pImage is a UIImage.
All of that would take you a minimum of around 4 hours to achieve.
SundialSoft is offline   Reply With Quote
Old 09-19-2011, 02:09 AM   #7 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Default

Ok, first thing is, obviously I know Facebook needs API, and I've registered as one few months ago. It works but after awhile it don't work anymore. I've attached two pictures to prove that sharekit doesn't work. I'm not here to argue but to learn more about uploading of photos to Facebook, Flickr etc. Guides and tutorials are enough. Thanks all. If you can help me please feel free to, I'll appreciate it a lot, Thanks!
Attached Images
File Type: jpg Screen shot 2011-09-19 at PM 03.05.50.jpg (14.1 KB, 12 views)
File Type: jpg Screen shot 2011-09-19 at PM 03.06.14.jpg (12.7 KB, 12 views)
aimerlapile is offline   Reply With Quote
Old 09-19-2011, 02:17 AM   #8 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Default

Another problem I am facing is Flickr. I am using SnapAndRun and it works on iPhone simulator but not in real iPhone device. I can't deploy in an iPhone device. Why is it so? But it works perfectly in the simulator itself.
Attached Images
File Type: jpg Screen shot 2011-09-19 at PM 03.16.46.jpg (17.4 KB, 4 views)
File Type: jpg Screen shot 2011-09-19 at PM 03.17.17.jpg (19.0 KB, 2 views)
aimerlapile is offline   Reply With Quote
Old 09-19-2011, 09:56 PM   #9 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Post Need help!

Quote:
Originally Posted by aimerlapile View Post
Another problem I am facing is Flickr. I am using SnapAndRun and it works on iPhone simulator but not in real iPhone device. I can't deploy in an iPhone device. Why is it so? But it works perfectly in the simulator itself.
Anyone knows the solution to the problem I'm facing?
aimerlapile is offline   Reply With Quote
Old 09-20-2011, 01:19 AM   #10 (permalink)
Registered Member
 
SundialSoft's Avatar
 
Join Date: Oct 2010
Location: Scotland
Posts: 176
SundialSoft is on a distinguished road
Default

Quote:
Originally Posted by aimerlapile View Post
Anyone knows the solution to the problem I'm facing?
You did not mention it was Sharekit you were having an issue with. Posting to FB is not too difficult & unless you want a common interface for FB & Twitter I'm not sure why you are using Sharekit. I could not get it working but I can use the Facebook Connect stuff fine. Once you get the demo working you should know how to do the job.

As I don't know about Flikr I can't help there but you should post small code snippets of the stuff that's not working or you won't get much direct help!
SundialSoft is offline   Reply With Quote
Old 09-20-2011, 09:19 AM   #11 (permalink)
Just helping out.
 
Domele's Avatar
 
Join Date: Feb 2011
Posts: 2,565
Domele is on a distinguished road
Default

I don't the know the answer to his problem nor have I ever worked with Facebook APIs but ShareKit has to be easier than doing it yourself.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.

New app - See screenshots and details at www.globaclock.com.

If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.
Domele is offline   Reply With Quote
Old 09-21-2011, 02:10 AM   #12 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Default

Quote:
Originally Posted by SundialSoft View Post
You did not mention it was Sharekit you were having an issue with. Posting to FB is not too difficult & unless you want a common interface for FB & Twitter I'm not sure why you are using Sharekit. I could not get it working but I can use the Facebook Connect stuff fine. Once you get the demo working you should know how to do the job.

As I don't know about Flikr I can't help there but you should post small code snippets of the stuff that's not working or you won't get much direct help!
I really don't know how to show my Flickr error. It works perfectly in simulator. It's not the code problem. But is the settings I guess. Thus it cannot work in the device itself. Thanks for the help.
aimerlapile is offline   Reply With Quote
Old 09-21-2011, 02:11 AM   #13 (permalink)
Registered Member
 
Join Date: Jun 2011
Posts: 13
aimerlapile is on a distinguished road
Default

Quote:
Originally Posted by Domele View Post
I don't the know the answer to his problem nor have I ever worked with Facebook APIs but ShareKit has to be easier than doing it yourself.
Hi Domele Thank you for helping but ShareKit isn't working anymore. Yup.
aimerlapile is offline   Reply With Quote
Reply

Bookmarks

Tags
facebook, flickr, image processing, photo, rotate

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: 401
16 members and 385 guests
7twenty7, Eclectic, eski, EvilElf, fiftysixty, HemiMG, iOS.Lover, JackReidy, jarv, pbart, Pudding, sacha1996, teebee74, UMAD, VinceYuan, yuncarl28
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,672
Threads: 94,121
Posts: 402,905
Top Poster: BrianSlick (7,990)
Welcome to our newest member, yuncarl28
Powered by vBadvanced CMPS v3.1.0

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