All Projects → vitoziv → Viphotoview

vitoziv / Viphotoview

Licence: mit
View a photo with simple and basic interactive gesture.

Labels

Projects that are alternatives of or similar to Viphotoview

Annca
Android library to simplify work with camera for video and photo with using different camera apis.
Stars: ✭ 169 (-24.89%)
Mutual labels:  photos
Gallery shell
📷 Bash Script to generate static responsive image web galleries.
Stars: ✭ 198 (-12%)
Mutual labels:  photos
Igrphototweaks
Drag, Rotate, Scale and Crop
Stars: ✭ 212 (-5.78%)
Mutual labels:  photos
Ownphotos Frontend
Stars: ✭ 171 (-24%)
Mutual labels:  photos
Skphotobrowser
Simple PhotoBrowser/Viewer inspired by facebook, twitter photo browsers written by swift
Stars: ✭ 2,285 (+915.56%)
Mutual labels:  photos
Unsplash rb
💎 Ruby wrapper for the Unsplash API.
Stars: ✭ 202 (-10.22%)
Mutual labels:  photos
Aphotomanager
Manage local photos on Android: gallery, geotag with photomap, privacy, tags, find, sort, view, copy, send, ... .
Stars: ✭ 164 (-27.11%)
Mutual labels:  photos
Agimagecontrols
cool tools for image edition
Stars: ✭ 217 (-3.56%)
Mutual labels:  photos
Faimagecropper
Image Cropper like Instagram
Stars: ✭ 188 (-16.44%)
Mutual labels:  photos
Pynet
Generating RGB photos from RAW image files with PyNET
Stars: ✭ 211 (-6.22%)
Mutual labels:  photos
Horizonsdk Ios
Horizon SDK for iOS
Stars: ✭ 171 (-24%)
Mutual labels:  photos
Unsplashkit
Swift client for Unsplash
Stars: ✭ 183 (-18.67%)
Mutual labels:  photos
React Native Photo Upload
Cross platform photo upload component for react native
Stars: ✭ 204 (-9.33%)
Mutual labels:  photos
Alcameraviewcontroller
A camera view controller with custom image picker and image cropping.
Stars: ✭ 2,023 (+799.11%)
Mutual labels:  photos
Recall App
🖼️ An open-source and decentralized alternative to Google Photos built on top of Blockstack
Stars: ✭ 212 (-5.78%)
Mutual labels:  photos
Pynet Pytorch
Generating RGB photos from RAW image files with PyNET (PyTorch)
Stars: ✭ 169 (-24.89%)
Mutual labels:  photos
Exiftool Vendored.js
Fast, cross-platform Node.js access to ExifTool
Stars: ✭ 200 (-11.11%)
Mutual labels:  photos
Ownphotos
Self hosted alternative to Google Photos
Stars: ✭ 2,587 (+1049.78%)
Mutual labels:  photos
Insta Downloader
Video & Photo Downloader or Repost for Instagram.
Stars: ✭ 217 (-3.56%)
Mutual labels:  photos
Camerafragment
A simple easy-to-integrate Camera Fragment for Android
Stars: ✭ 2,312 (+927.56%)
Mutual labels:  photos

VIPhotoView

VIPhotoView is a view use to view a photo with simple and basic interactive gesture. Pinch to scale photo, double tap to scale photo, drag to scoll photo.

Screenshot

demo.gif

Installation

CocoaPods

pod 'VIPhotoView', '~> 0.1'

Usage

Init VIPhotoView with frame and image, than add it to a view.

- (void)viewDidLoad {
    [super viewDidLoad];

    UIImage *image = [UIImage imageNamed:@"test.jpg"];
    VIPhotoView *photoView = [[VIPhotoView alloc] initWithFrame:self.view.bounds andImage:image];
    photoView.autoresizingMask = (1 << 6) -1;
    
    [self.view addSubview:photoView];
}

##License

VIPhotoView is released under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].