소스 검색

Rotate for wrong orientation image

Hau Vo 7 년 전
부모
커밋
aa385b788c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      android/src/main/java/com/reactlibrary/RNThumbnailModule.java

+ 1
- 1
android/src/main/java/com/reactlibrary/RNThumbnailModule.java 파일 보기

@@ -50,7 +50,7 @@ public class RNThumbnailModule extends ReactContextBaseJavaModule {
50 50
     int bitmapWidth = image.getWidth();
51 51
     int bitmapHeight = image.getHeight();
52 52
 
53
-    if ((bitmapWidth > bitmapHeight) !== (videoWidth > videoHeight)) {
53
+    if ((bitmapWidth > bitmapHeight) != (videoWidth > videoHeight)) {
54 54
       // we need to rotate image
55 55
       Matrix matrix = new Matrix();
56 56
       matrix.postRotate(-90);