loadingimages.pde

来自「This is processing for java examples.」· PDE 代码 · 共 17 行

PDE
17
字号
/** * Loading Images.  *  * Loading a recent image from the US National Weather Service.  * Notice the date in the upper left corner of the image.  * Processing applications can only load images from the network * while running in the Processing environment. This example will  * not run in a web broswer and will only work when the computer * is connected to the Internet.  */ size(200, 200);PImage img1;img1 = loadImage("http://www.processing.org/img/processing_beta_cover.gif");image(img1, 0, 45);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?