zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    文件系统之磁盘配额
    mysql之基础操作
    mysql-两种方式安装
    文件系统之parted 分区
    JDK1.7配置及测试
    ASP.NET中处理自定义错误的最佳方式
    C#使用System.Data.SQLite操作SQLite
    C#判断ip地址是否ping的通
    C#的WinForm中制作饼状图和柱状图
    使用.net(C#)发送邮件学习手册(带成功案例)
  • 原文地址:https://www.cnblogs.com/nmj1986/p/2652400.html
Copyright © 2011-2022 走看看