본문 바로가기
Android

[Open Source] 이미지 줌 인/아웃 - PhotoView

by kldaji 2021. 7. 5.

https://github.com/Baseflow/PhotoView

 

Baseflow/PhotoView

Implementation of ImageView for Android that supports zooming, by various touch gestures. - Baseflow/PhotoView

github.com

 

1. gradle 추가 (21.07.05 기준)

// build.gradle (Project: $ProjectName)
allprojects {
    repositories {
        maven { url "https://www.jitpack.io" }
    }
}
// build.gradle (Module: $ProjectName)
dependencies {
    implementation 'com.github.chrisbanes:PhotoView:2.3.0'
}

 

2. xml 추가

<com.github.chrisbanes.photoview.PhotoView
    android:id="@+id/photo_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

 

3. 특징

- 이미지의 사이즈는 고정되어 있지만, 자유롭게 확대 및 축소가 가능하다는 점에서 좋은 라이브러리라고 생각한다.

 

4. DEMO 영상

추후에 추가할 예정.