xiejun
2024-11-01 80b6cbfc9c861469146318d0b3dd5f8b8b525b8a
Source/BladeX-Tool/blade-core-tool/src/main/java/org/springblade/core/tool/support/ImagePosition.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,150 @@
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill åº„骞 (smallchill@163.com)
 */
package org.springblade.core.tool.support;
/**
 * å›¾ç‰‡æ“ä½œç±»
 *
 * @author Chill
 */
public class ImagePosition {
   /**
    * å›¾ç‰‡é¡¶éƒ¨.
    */
   public static final int TOP = 32;
   /**
    * å›¾ç‰‡ä¸­éƒ¨.
    */
   public static final int MIDDLE = 16;
   /**
    * å›¾ç‰‡åº•部.
    */
   public static final int BOTTOM = 8;
   /**
    * å›¾ç‰‡å·¦ä¾§.
    */
   public static final int LEFT = 4;
   /**
    * å›¾ç‰‡å±…中.
    */
   public static final int CENTER = 2;
   /**
    * å›¾ç‰‡å³ä¾§.
    */
   public static final int RIGHT = 1;
   /**
    * æ¨ªå‘边距,靠左或靠右时和边界的距离.
    */
   private static final int PADDING_HORI = 6;
   /**
    * çºµå‘边距,靠上或靠底时和边界的距离.
    */
   private static final int PADDING_VERT = 6;
   /**
    * å›¾ç‰‡ä¸­ç›’[左上角]的x坐标.
    */
   private int boxPosX;
   /**
    * å›¾ç‰‡ä¸­ç›’[左上角]的y坐标.
    */
   private int boxPosY;
   /**
    * Instantiates a new image position.
    *
    * @param width     the width
    * @param height    the height
    * @param boxWidth  the box width
    * @param boxHeight the box height
    * @param style     the style
    */
   public ImagePosition(int width, int height, int boxWidth, int boxHeight, int style) {
      switch (style & 7) {
         case LEFT:
            boxPosX = PADDING_HORI;
            break;
         case RIGHT:
            boxPosX = width - boxWidth - PADDING_HORI;
            break;
         case CENTER:
         default:
            boxPosX = (width - boxWidth) / 2;
      }
      switch (style >> 3 << 3) {
         case TOP:
            boxPosY = PADDING_VERT;
            break;
         case MIDDLE:
            boxPosY = (height - boxHeight) / 2;
            break;
         case BOTTOM:
         default:
            boxPosY = height - boxHeight - PADDING_VERT;
      }
   }
   /**
    * Gets the x.
    *
    * @return the x
    */
   public int getX() {
      return getX(0);
   }
   /**
    * Gets the x.
    *
    * @param x æ¨ªå‘偏移
    * @return the x
    */
   public int getX(int x) {
      return this.boxPosX + x;
   }
   /**
    * Gets the y.
    *
    * @return the y
    */
   public int getY() {
      return getY(0);
   }
   /**
    * Gets the y.
    *
    * @param y çºµå‘偏移
    * @return the y
    */
   public int getY(int y) {
      return this.boxPosY + y;
   }
}