• ExifInterface 照片方向属性 Binary


                ExifInterface.ORIENTATION_UNDEFINED;              //0
                
                /** Top, left side (Horizontal / normal) */
                ExifInterface.ORIENTATION_NORMAL;                 //1
                
                /** Top, right side (Mirror horizontal) */
                ExifInterface.ORIENTATION_FLIP_HORIZONTAL;        //2
                
                /** Bottom, right side (Rotate 180) */
                ExifInterface.ORIENTATION_ROTATE_180;             //3
                 
                /** Bottom, left side (Mirror vertical) */
                ExifInterface.ORIENTATION_FLIP_VERTICAL;          //4
                
                /** Left side, top (Mirror horizontal and rotate 270 CW) */
                ExifInterface.ORIENTATION_TRANSPOSE;              //5
                
                /** Right side, top (Rotate 90 CW) */
                ExifInterface.ORIENTATION_ROTATE_90;              //6 
                
                /** Right side, bottom (Mirror horizontal and rotate 90 CW) */
                ExifInterface.ORIENTATION_TRANSVERSE;             //7
                
                /** Left side, bottom (Rotate 270 CW) */
                ExifInterface.ORIENTATION_ROTATE_270;             //8
  • 相关阅读:
    Docker 离线安装
    Python迭代器,生成器,装饰器
    docker “no space left on device”问题解决
    docker磁盘空间不足之数据迁移解决方案
    docker常用的命令
    PaddleOCR+OpenCV实现文字识别步骤
    三行Python代码,让你的数据处理脚本快别人4倍
    [转]GitLab安装与启动
    [转]linux下redis开机自启动
    《高性能MySQL》读书笔记(二)
  • 原文地址:https://www.cnblogs.com/nmj1986/p/2652400.html
Copyright © 2020-2023  润新知