Class ImageElement


public class ImageElement extends AbstractElement<ImageElement>
图片元素
Since:
Java 17+
Author:
Kimi Liu
  • Constructor Details

    • ImageElement

      public ImageElement(String imgUrl, int x, int y)
      Parameters:
      imgUrl - 图片url
      x - x坐标
      y - y坐标
    • ImageElement

      public ImageElement(BufferedImage image, int x, int y)
      Parameters:
      image - 图片对象
      x - x坐标
      y - y坐标
    • ImageElement

      public ImageElement(String imgUrl, int x, int y, int width, int height, Scale.Zoom zoom)
      Parameters:
      imgUrl - 图片url
      x - x坐标
      y - y坐标
      width - 宽度
      height - 高度
      zoom - 缩放模式
    • ImageElement

      public ImageElement(BufferedImage image, int x, int y, int width, int height, Scale.Zoom zoom)
      Parameters:
      image - 图片对象
      x - x坐标
      y - y坐标
      width - 宽度
      height - 高度
      zoom - 缩放模式
  • Method Details