zoukankan      html  css  js  c++  java
  • TIFF Tag Orientation

    TIFF Tag Orientation

    IFD Image
    Code   274 (hex 0x0112)
    Name   Orientation
    LibTiff name   TIFFTAG_ORIENTATION
    Type   SHORT
    Count   1
    Default   1

    Description

    The orientation of the image with respect to the rows and columns.

    The specification defines these values:

    1 = The 0th row represents the visual top of the image, and the 0th column represents the visual left-hand side.
    2 = The 0th row represents the visual top of the image, and the 0th column represents the visual right-hand side.
    3 = The 0th row represents the visual bottom of the image, and the 0th column represents the visual right-hand side.
    4 = The 0th row represents the visual bottom of the image, and the 0th column represents the visual left-hand side.
    5 = The 0th row represents the visual left-hand side of the image, and the 0th column represents the visual top.
    6 = The 0th row represents the visual right-hand side of the image, and the 0th column represents the visual top.
    7 = The 0th row represents the visual right-hand side of the image, and the 0th column represents the visual bottom.
    8 = The 0th row represents the visual left-hand side of the image, and the 0th column represents the visual bottom.

    The specification considers this a baseline tag, but does add that support for orientations other than 1 is not a Baseline TIFF requirement.

    LibTiff defines these values:

    ORIENTATION_TOPLEFT = 1;
    ORIENTATION_TOPRIGHT = 2;
    ORIENTATION_BOTRIGHT = 3;
    ORIENTATION_BOTLEFT = 4;
    ORIENTATION_LEFTTOP = 5;
    ORIENTATION_RIGHTTOP = 6;
    ORIENTATION_RIGHTBOT = 7;
    ORIENTATION_LEFTBOT = 8;

    Many readers ignore this tag.

  • 相关阅读:
    深入理解javascript的this关键字
    很简单的JQuery网页换肤
    有关垂直居中
    层的半透明实现方案
    常用meta整理
    web前端页面性能优化小结
    关于rem布局以及sprit雪碧图的移动端自适应
    mysql入过的坑
    日期格式化函数
    基于iframe父子页面传值的方法。
  • 原文地址:https://www.cnblogs.com/ybqjymy/p/13703811.html
Copyright © 2011-2022 走看看