本文整理了Java中java.awt.geom.AffineTransform.setToScale()
方法的一些代码示例,展示了AffineTransform.setToScale()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AffineTransform.setToScale()
方法的具体详情如下:
包路径:java.awt.geom.AffineTransform
类名称:AffineTransform
方法名:setToScale
暂无
代码示例来源:origin: opentripplanner/OpenTripPlanner
public ShapeStroke(Shape shape, float width, float advance, float phase) {
this.advance = advance;
this.phase = phase;
Rectangle2D bounds = shape.getBounds2D();
double scale = width / bounds.getHeight();
t.setToScale(scale, scale);
t.translate(-bounds.getCenterX(), -bounds.getCenterY());
this.theShape = t.createTransformedShape(shape);
}
代码示例来源:origin: geotools/geotools
/** Checks for {@linkplain #checkPermission permission} before setting this transform. */
@Override
public void setToScale(double sx, double sy) {
checkPermission();
super.setToScale(sx, sy);
}
代码示例来源:origin: JChemPaint/jchempaint
public void setTransform(AffineTransform transform) {
this.transform = transform;
this.transform.setToScale(30, -30);
// System.err.println(transform.toString());
// System.err.println(String.format("scale=%f zoom=%f\n", transform.getScaleX(), transform.getScaleY()));
}
代码示例来源:origin: stackoverflow.com
double xScale = 100/image.getWidth();
double yScale = 300/image.getHeight();
AffineTransform transform = new AffineTransform();
transform.setToScale( xScale, yScale );
//paint code goes here
代码示例来源:origin: stackoverflow.com
double xScale = 100/image.getWidth();
double yScale = 300/image.getHeight();
double theScale = xScale > yScale ? xScale : yScale;
AffineTransform transform = new AffineTransform();
transform.setToScale( theScale , theScale );
//paint code goes here
代码示例来源:origin: uk.ac.ebi.caf/caf-utility
private AffineTransform transform(int length) {
transform = new AffineTransform();
if (flip == Flip.Horizontal) {
transform.setToScale(-1, 1);
transform.translate(-length, 0);
}
return transform;
}
代码示例来源:origin: stackoverflow.com
public static void main(String[] args) throws IOException {
BufferedImage image = ImageIO.read(new File("test.jpg"));
BufferedImage mirrored = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB);
Graphics2D graphics = (Graphics2D)mirrored.getGraphics();
AffineTransform transform = new AffineTransform();
transform.setToScale(1, -1);
transform.translate(0, -image.getHeight());
graphics.setTransform(transform);
graphics.drawImage(image, 0, 0, null);
ImageIO.write(mirrored, "jpg", new File("test-flipped.jpg"));
}
代码示例来源:origin: apache/sis
/**
* Checks for {@linkplain #checkPermission() permission} before setting this transform.
*/
@Override
public final void setToScale(double sx, double sy) {
checkPermission();
super.setToScale(sx, sy);
}
代码示例来源:origin: org.apache.sis.core/sis-referencing
/**
* Checks for {@linkplain #checkPermission() permission} before setting this transform.
*/
@Override
public final void setToScale(double sx, double sy) {
checkPermission();
super.setToScale(sx, sy);
}
代码示例来源:origin: ThomasFooteDQ/DroidQuest
public void componentResized(ComponentEvent e) {
Dimension d = new Dimension();
getSize(d);
double w = d.width / 560.0;
double h = d.height / 384.0;
at.setToScale(w, h);
}
});
代码示例来源:origin: cytoscape/application
private void adjustShape() {
final double shapeWidth = shape.getBounds2D().getWidth();
final double shapeHeight = shape.getBounds2D().getHeight();
final double xRatio = width / shapeWidth;
final double yRatio = height / shapeHeight;
final AffineTransform af = new AffineTransform();
final Rectangle2D bound = shape.getBounds2D();
final double minx = bound.getMinX();
final double miny = bound.getMinY();
if (minx < 0) {
af.setToTranslation(Math.abs(minx), 0);
shape = af.createTransformedShape(shape);
}
if (miny < 0) {
af.setToTranslation(0, Math.abs(miny));
shape = af.createTransformedShape(shape);
}
af.setToScale(xRatio, yRatio);
shape = af.createTransformedShape(shape);
}
代码示例来源:origin: org.boofcv/visualize
@Override
public void paintComponent(Graphics g) {
if( img != null) {
Graphics2D g2 = (Graphics2D)g;
g2.setColor(Color.WHITE);
g2.fillRect(0,0,getWidth(),getHeight());
double scale = img.getWidth()/(double)getWidth();
if( scale > 1 ) {
AffineTransform tran = new AffineTransform();
tran.setToScale(1.0/scale,1.0/scale);
g2.drawImage(img,tran,null);
} else {
g.drawImage(img, 0, 0, this);
}
}
}
}
代码示例来源:origin: org.boofcv/boofcv-swing
@Override
public void paintComponent(Graphics g) {
if( img != null) {
Graphics2D g2 = (Graphics2D)g;
g2.setColor(Color.WHITE);
g2.fillRect(0,0,getWidth(),getHeight());
double scale = img.getWidth()/(double)getWidth();
if( scale > 1 ) {
AffineTransform tran = new AffineTransform();
tran.setToScale(1.0/scale,1.0/scale);
g2.drawImage(img,tran,null);
} else {
g.drawImage(img, 0, 0, this);
}
}
}
}
代码示例来源:origin: dk.apaq.printing/printing-facade-core
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
if(pageIndex!=0) {
return NO_SUCH_PAGE;
}
Graphics2D g2d = (Graphics2D) graphics;
AffineTransform at = new AffineTransform();
at.translate(0, 0);
//We need to scale the image properly so that it fits on one page.
double xScale = pageFormat.getWidth() / image.getWidth();
double yScale = pageFormat.getHeight() / image.getHeight();
// Maintain the aspect ratio by taking the min of those 2 factors and using it to scale both dimensions.
double aspectScale = Math.min(xScale, yScale);
at.setToScale(aspectScale, aspectScale);
g2d.drawRenderedImage(image, at);
return Printable.PAGE_EXISTS;
}
代码示例来源:origin: mikaelhg/openblocks
/**
* update zoom for this button
* @param newZoom
*/
public void setZoomLevel(double newZoom) {
Font renderingFont;
AffineTransform at = new AffineTransform();
at.setToScale(newZoom, newZoom);
renderingFont = this.getFont().deriveFont(at);
this.setFont(renderingFont);
this.repaint();
}
代码示例来源:origin: stackoverflow.com
File f = new File("awesome_tiger.svg");
g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
SVGUniverse svgUniverse = new SVGUniverse();
try {
SVGDiagram diagram = svgUniverse.getDiagram(svgUniverse.loadSVG(f.toURI().toURL()));
try {
AffineTransform at = new AffineTransform();
at.setToScale(jdpPane.getWidth()/diagram.getWidth(), jdpPane.getWidth()/diagram.getWidth());
g.transform(at);
diagram.render(g);
}
catch(Exception e2) {System.out.println(e2);}}
catch (Exception ex) {System.out.println(ex);}
代码示例来源:origin: mikaelhg/openblocks
public void setZoomLevel(double newZoom) {
this.zoom = newZoom;
Font renderingFont;// = new Font(font.getFontName(), font.getStyle(), (int)(font.getSize()*newZoom));
AffineTransform at = new AffineTransform();
at.setToScale(newZoom, newZoom);
renderingFont = this.getFont().deriveFont(at);
this.setFont(renderingFont);
this.repaint();
this.updateDimensions();
}
代码示例来源:origin: geotools/geotools
tr.setToScale(1, f);
assertEquals(1, XAffineTransform.getScaleX0(tr), EPS);
assertEquals(1, XAffineTransform.getScaleY0(tr), EPS);
tr.setToScale(2, 3 * f);
assertEquals(2, XAffineTransform.getScaleX0(tr), EPS);
assertEquals(3, XAffineTransform.getScaleY0(tr), EPS);
代码示例来源:origin: openstreetmap/osmembrane
@Override
public void resetView() {
double zoomFactor = PipelinePanel.DEFAULT_ZOOM
* (Double) ModelProxy.getInstance().getSettings()
.getValue(SettingType.DEFAULT_ZOOM_SIZE);
objectToWindow.setToScale(zoomFactor, zoomFactor);
arrange(true);
}
代码示例来源:origin: hneemann/Digital
/**
* maximizes the circuit shown
*/
public void fitCircuit() {
GraphicMinMax gr = new GraphicMinMax();
circuit.drawTo(gr);
AffineTransform newTrans = new AffineTransform();
if (gr.getMin() != null && getWidth() != 0 && getHeight() != 0) {
Vector delta = gr.getMax().sub(gr.getMin());
double sx = ((double) getWidth()) / (delta.x + Style.NORMAL.getThickness() * 2);
double sy = ((double) getHeight()) / (delta.y + Style.NORMAL.getThickness() * 2);
double s = Math.min(sx, sy);
newTrans.setToScale(s, s); // set Scaling
Vector center = gr.getMin().add(gr.getMax()).div(2);
newTrans.translate(-center.x, -center.y); // move drawing center to (0,0)
Vector dif = new Vector(getWidth(), getHeight()).div(2);
newTrans.translate(dif.x / s, dif.y / s); // move drawing center to frame center
isManualScale = false;
} else {
isManualScale = true;
}
if (!newTrans.equals(transform)) {
transform = newTrans;
repaintNeeded();
}
}
内容来源于网络,如有侵权,请联系作者删除!