com.lowagie.text.Rectangle.setRight()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(96)

本文整理了Java中com.lowagie.text.Rectangle.setRight方法的一些代码示例,展示了Rectangle.setRight的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Rectangle.setRight方法的具体详情如下:
包路径:com.lowagie.text.Rectangle
类名称:Rectangle
方法名:setRight

Rectangle.setRight介绍

[英]Sets the upper right x-coordinate.
[中]设置右上角的x坐标。

代码示例

代码示例来源:origin: es.gob.afirma/afirma-crypto-pdf-itext

/**
 * Sets the bounding width of this template.
 *
 * @param width the bounding width
 */

public void setWidth(float width) {
  bBox.setLeft(0);
  bBox.setRight(width);
}

代码示例来源:origin: com.github.librepdf/openpdf

/**
 * Sets the bounding width of this template.
 *
 * @param width the bounding width
 */

public void setWidth(float width) {
  bBox.setLeft(0);
  bBox.setRight(width);
}

代码示例来源:origin: fr.opensagres.xdocreport.itext-gae/itext-gae

/**
 * Sets the bounding width of this template.
 *
 * @param width the bounding width
 */

public void setWidth(float width) {
  bBox.setLeft(0);
  bBox.setRight(width);
}

代码示例来源:origin: com.github.librepdf/openpdf

/** Gets the maximum area that the barcode and the text, if
 * any, will occupy. The lower left corner is always (0, 0).
 * @return the size the barcode occupies.
 */
public Rectangle getBarcodeSize() {
  Rectangle rect = ean.getBarcodeSize();
  rect.setRight(rect.getWidth() + supp.getBarcodeSize().getWidth() + n);
  return rect;
}

代码示例来源:origin: es.gob.afirma/afirma-crypto-pdf-itext

/** Gets the maximum area that the barcode and the text, if
 * any, will occupy. The lower left corner is always (0, 0).
 * @return the size the barcode occupies.
 */
public Rectangle getBarcodeSize() {
  Rectangle rect = ean.getBarcodeSize();
  rect.setRight(rect.getWidth() + supp.getBarcodeSize().getWidth() + n);
  return rect;
}

代码示例来源:origin: fr.opensagres.xdocreport.itext-gae/itext-gae

/** Gets the maximum area that the barcode and the text, if
 * any, will occupy. The lower left corner is always (0, 0).
 * @return the size the barcode occupies.
 */
public Rectangle getBarcodeSize() {
  Rectangle rect = ean.getBarcodeSize();
  rect.setRight(rect.getWidth() + supp.getBarcodeSize().getWidth() + n);
  return rect;
}

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-printing

/**
 * Move this rectangle to the specified bottom-left point.
 *
 * @param rect rectangle to move
 * @param x new x origin
 * @param y new y origin
 */
public void moveRectangleTo(Rectangle rect, float x, float y) {
  float width = rect.getWidth();
  float height = rect.getHeight();
  rect.setLeft(x);
  rect.setBottom(y);
  rect.setRight(rect.getLeft() + width);
  rect.setTop(rect.getBottom() + height);
}

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-printing

/**
 * Translate this rectangle over the specified following distances.
 *
 * @param rect rectangle to move
 * @param dx delta x
 * @param dy delta y
 */
public void translateRectangle(Rectangle rect, float dx, float dy) {
  float width = rect.getWidth();
  float height = rect.getHeight();
  rect.setLeft(rect.getLeft() + dx);
  rect.setBottom(rect.getBottom() + dy);
  rect.setRight(rect.getLeft() + dx + width);
  rect.setTop(rect.getBottom() + dy + height);
}

相关文章

微信公众号

最新文章

更多