Skip to content

insitemobile/AC-Photography-Application

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AC-Photography-Application

##Introduction

  • After about a year taking photos as a hobby, I decided it would be interesting to have a standalone application where users could easily view and download images from their smartphone.

##Libraries

##Details

  • Compatible with iOS 6.0 +

###JSON Data

  • My data was set up to work with my website and with the way my images are organized. In order to make this app work for you, you'll have to create your own data
  • JSON data format
{
  "main_page": [ //Include the category names in the "main_page" object
    "Practices",
    "Events"
  ],
  "Practices": [ //For each category create an object with its name including the names of all the galleries within
    "PBW 11/06/2011",
    ....
  ],
  "Events": [
    "NCPA SACC #2 2011",
    ....
  ],
  "Featured": [ //in the featured object include the urls to your chosen featured images
    "http://andrecphoto.weebly.com/uploads/6/5/5/1/6551078/1068479_orig.jpg",
    ....
  ],
  "Events_Images": [ //For each catergory include the urls to its galleries thumbnails
    "http://andrecphoto.weebly.com/uploads/6/5/5/1/6551078/9148830_orig.jpg",
    ....
  ],
  "Practices_Images": [
    "http://andrecphoto.weebly.com/uploads/6/5/5/1/6551078/3545902_orig.jpg",
    ....
  "PBW 11/06/2011": [ //For each gallery include an object with the urls for all the images
    "8962321_orig.jpg",
    ....
  ],
  "Hotshots 01/01/2012": [
    "9646669_orig.jpg",
    ....
  ],
  "PBW 01/29/2012": [
    "9283844_orig.jpg",
    ....
}
  • You can view my JSON data in the repo or in the link below
  • I included a small script that generates JSON data from Flickr sets. Simply run sh test.sh then enter the link to the gallery's sets (Ex: http://www.flickr.com/photos/38177739@N05/sets/)
    • The script will then create data including an object with the titles of each of the sets and then an object for each set with the urls to the images
    • This can easily be adapted to the above format

###Main View

  • The main page contains two main elements: a Featured Images Section and a two sepearate gallery sections. - The Featured Images secition displays 5 images specified in the JSON data. - In my case I have two separate sections for photo galleries so this allows the use to choose which section they want to view.

iOS7screenshot iOS6screenshot

  • If there are more than two categories, the app will automatically create a draggable UITableView. iOS7screenshot iOS6screenshot

iOS7screenshot iOS6screenshot

###Information View

  • The main page also contains an information view where I link to my photography website and Facebook page.

iOS7screenshot iOS6screenshot

###Gallery Selection View

  • After selecting one of the sections, each of the photo galleries avaliable are displayed
    • The cell for each of the galleries has an image and the number of photos in the gallery

iOS7screenshot iOS6screenshot

###Thumbnail Gallery

  • Once a gallery is chosen, the user can now view thumbnails for the images.

iOS7screenshot iOS6screenshot

###Photo Browser

  • When a thumbnail is clicked, it opens up the photo browser.

iOS7screenshot iOS6screenshot

  • From the photo browser, the user can save, copy, and email the image.

iOS7screenshot iOS6screenshot

##License

Copyright (c) 2013 Andre Compagno

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published