I am developing a application where i want to load the image on flickr.I have seen the Snap and Run project where i tried to share the image using my API key but cannot do it.
its giving response as invalid callback url. Can anyone help me with this as I am not able to do this,,
Thanks in advance,
Try the ObjectiveFlickr project: http://github.com/lukhnos/objectiveflickr
You'll need to give us more detail if you want a better answer.
Related
I want to send image to flickr from my application for that
I have done a lot of search and also google but I couldn't find the solution
so if you have any idea then share it
thanx in advance
Look at this.
If you want something else, please let me know\
http://macapper.com/2007/07/28/tutorial-how-to-make-a-flickr-uploader-plug-in-part-1/
or this:
http://objective-c.wonderhowto.com/how-to/upload-image-website-from-apple-ios-application-333979/
Can't find anything about this anywhere (maybe there's a good reason...) - does anyone know if there are any libraries for creating simple SWFs in iOS? I'd like to be able to let the user build a simple animation, then email it off as a SWF. If it's not possible, I'll probably go down the animated gif route.
Thanks for any help!
You might use libsswf which has a c interface.
Check here.
I am new to iOS projects. In my current project, I have to process an image which contains LED object. I want to extract the LED object status (on/off) from that image in iOS. Is there any open source library to process the image for my scenario. Please help me.
Thanks in advance.
I think there is an opencv port for ios.
Check following link
http://www.eosgarden.com/en/opensource/opencv-ios/overview/
You could use OpenCV. But honestly for what you want to do, doing it yourself would be way easier.
I have been using UIPickerController to get the pics from my Built-in-Gallery into my own Application, But the issue is that the delegate related to that UIPickerCOntroller get only one pic at a time and returns me only one image. So i need to get the images one by one from PHotoGallery.
Now i want to implement my own Photo-Gallery so that i could get multiple images from Built-In photo Gallery.
Can you guys guide me how to access Builtin Gallery photo Folders and fetch all images from there into my Array so that i can make my own Photo Gallery with Multiple Selection Option
Or PLease tell me if i can manage the Multiple Selection Option from UIPickerController.
I guess Apple should provide us atleast this sort of feature that we can select multiple photos at a time from Photo gallery.
PLease guys Can u guide me with some code from any of these two Options
Thanks
you want to use the Assets Library framework. take a look at this blog post for more details:
http://www.fiveminutes.eu/accessing-photo-library-using-assets-library-framework-on-iphone/
I'm working on an app for a client and the client wants absolutely everything to be shareable (using sharekit). One of the views that the client wants is a photo gallery that can be easily updated and viewed. I've looked around at folks who have done this and I particularly like the way the Obama 2012 app does it using flickr. This brings me to the question, I'm trying to use the flickr api to display a photo gallery that will allow sharekit to share the url to the image but am hitting a brick wall. I've searched for a few days now and haven't found a tutorial that shows a working example in the way I need it, if anyone has done something similar or knows a good tutorial that would be greatly appreciated.
Download the list of images using the Flickr API, and asynchronously add them to a UIScrollView inside a UINavigationController with its back button as "back". Then add a UIToolBar which has the items 'Next' and 'Previous' (use images). That will give you the look of a photo gallery.
Also, I came across this which is basically what I told you to do, but open source: http://www.cocoacontrols.com/platforms/ios/controls/fgallery
I wrote a tutorial on building a media gallery using a UICollectionView. It populates from the user's photo library, but is definitely more extensible than using a 3rd party.
iPhone Programming Tutorial: Creating An Image Gallery Like Over – Part 1
Hope that helps. Cheers!