text 加载图像调整大小并放入hex grid.pde

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 加载图像调整大小并放入hex grid.pde相关的知识,希望对你有一定的参考价值。

PImage img;  // Declare a variable of type PImage
int x = 0;
int y = 0;
int bigdistance = 2000;
int distance = 100;
int gridpoints = (bigdistance/distance);

void setup() {
  size(2000,2000);
  background(0);
  // Make a new instance of a PImage by loading an image file
  img = loadImage("File 05-08-2018, 21 07 05.png");
  img.resize(140,140);
  
}

void draw() {
  
for (int j = 0; j < gridpoints-1; j++){
  
for (int i = 0; i < gridpoints-1; i++){

  // Draw the image to the screen at coordinate (0,0)
  image(img,x,y);
//rect(x,y,10,10);
 
  x += distance;
 
 
}
if ((x % distance) == 0){
x = (distance/2);
} else {
  x = 0;
}
y += distance;

}

    save("hexgrid1.png");
}

以上是关于text 加载图像调整大小并放入hex grid.pde的主要内容,如果未能解决你的问题,请参考以下文章

xml MvDo加载自定义图像类型,并调整大小。 //主图像//加载图像

xml MvDo加载自定义图像类型,并调整大小。 //主图像//加载图像

使用 OpenGL 调整图像大小

如何查看精确调整大小的图像放入 Vision 框架?

如何防止 iOS 上的浏览​​器调整图像大小?

图像下载后调整表格单元格大小