{"id":23722702,"url":"https://github.com/grofers/ios-imagezoomviewer","last_synced_at":"2025-09-03T23:31:56.121Z","repository":{"id":56915398,"uuid":"61270540","full_name":"grofers/iOS-ImageZoomViewer","owner":"grofers","description":"ImageZoomViewer is a simple to use Objective C framework that allows the capability of viewing images with zoom-in zoom-out functionality.","archived":false,"fork":false,"pushed_at":"2017-10-31T05:47:55.000Z","size":127,"stargazers_count":15,"open_issues_count":1,"forks_count":1,"subscribers_count":89,"default_branch":"master","last_synced_at":"2025-08-24T12:29:24.458Z","etag":null,"topics":["ios","objective-c","pod","uiimage","uiimageview","zoom-images","zoomable-images"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/grofers.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-06-16T07:12:48.000Z","updated_at":"2023-08-23T12:57:51.000Z","dependencies_parsed_at":"2022-08-20T20:50:36.485Z","dependency_job_id":null,"html_url":"https://github.com/grofers/iOS-ImageZoomViewer","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/grofers/iOS-ImageZoomViewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grofers%2FiOS-ImageZoomViewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grofers%2FiOS-ImageZoomViewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grofers%2FiOS-ImageZoomViewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grofers%2FiOS-ImageZoomViewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grofers","download_url":"https://codeload.github.com/grofers/iOS-ImageZoomViewer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grofers%2FiOS-ImageZoomViewer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273528216,"owners_count":25121761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","objective-c","pod","uiimage","uiimageview","zoom-images","zoomable-images"],"created_at":"2024-12-30T23:55:50.600Z","updated_at":"2025-09-03T23:31:55.769Z","avatar_url":"https://github.com/grofers.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ImageZoomViewer\n\n[![Version](https://img.shields.io/cocoapods/v/ImageZoomViewer.svg?style=flat)](http://cocoapods.org/pods/ImageZoomViewer)\n[![License](https://img.shields.io/cocoapods/l/ImageZoomViewer.svg?style=flat)](http://cocoapods.org/pods/ImageZoomViewer)\n[![Platform](https://img.shields.io/cocoapods/p/ImageZoomViewer.svg?style=flat)](http://cocoapods.org/pods/ImageZoomViewer)\n\n## Overview\n\nImageZoomViewer is a simple to use Objective C framework that allows the capability of viewing images with zoom-in zoom-out functionality. Framework also provides different types of animations. Currently, supporting only portrait mode. \n\n## Screenshot\n\n![Example](https://media.giphy.com/media/l4EoSdcwlQVuQF2uY/giphy.gif)\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n\n## Installation\n\n### CocoaPods\n\nImageZoomViewer is available through [CocoaPods](https://cocoapods.org/pods/ImageZoomViewer). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'ImageZoomViewer'\n```\n\n### Manual\n\nThe source is contained inside the ```Pod/ImageZoomViewer``` folder. Simply drag these classes into your project's directory.\n\n## Usage\n\n### Initialization\n\n    ImageZoomViewer * imageZoomViewer = [[ImageZoomViewer alloc]initWithBottomCollectionBorderColor:[UIColor blackColor]];\n    zoomImageView.delegate = self;\n\n### ImageZoomViewerDelegate\n\nYour source view controllers need to implement this protocol to facilitate the transition. The protocol is as follows:\n\n    required \n    -(void)initializeImageviewWithImages:(UIImageView *)imageview withIndexPath:(NSIndexPath *)indexPath withCollection:(int)collectionReference;\n\n    optional \n    - (void)imageIndexOnChange:(NSInteger)index;\n\n### AnimationType\n\n```AnimationTypeEaseIn```\n    \n    [zoomImageView showWithPageIndex:0 andImagesCount:(int)images.count withInitialImageView:nil andAnimType:AnimationTypeEaseIn];\n    \n```AnimationTypePop```\n    \n    CGRect animFrame = CGRectMake(100, 100, 100, 100);\n    UIImageView *imgView = [[UIImageView alloc] initWithFrame:animFrame];\n    [imgView setImage:image];\n    [imageZoomViewer showWithPageIndex:imageIndex andImagesCount:(int)[images count] withInitialImageView:imgView andAnimType:AnimationTypePop];\n    \n### Dismiss\n     [zoomImageView closeZoomViewer];\n     [[NSNotificationCenter defaultCenter] postNotificationName:@\"CLOSE_IMAGE_ZOOM_VIEWER\" object:nil];\n\n\n## Requirements\n\n- iOS 7.0 or higher\n\n\n## Author\n\nAnubhav Mathur, anubhav.mathur@grofers.com\n\n## License\n\nImageZoomViewer is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrofers%2Fios-imagezoomviewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrofers%2Fios-imagezoomviewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrofers%2Fios-imagezoomviewer/lists"}