Processing, 类PImage
中的save()
用法介绍。
用法
pimg.save(filename)
参数
pimg
(PImage)
任何 PImage 类型的对象filename
(String)
一系列字母和数字
返回
boolean
说明
将图像保存到文件中。将文件扩展名附加到文件名,以指示要使用的文件格式:TIFF (.tif)、TARGA (.tga)、JPEG (.jpg) 或 PNG (.png)。如果文件名中不包含扩展名,图像将以 TIFF 格式保存,并且 .tif 将添加到名称中。这些文件保存到草图的文件夹中,可以通过从"Sketch" 菜单中选择“显示草图文件夹”来打开该文件夹。
要保存在代码中创建的图像,而不是通过加载,需要使用createImage()
函数制作图像,以便它知道程序的位置,从而可以将文件保存到正确的位置。有关详细信息,请参阅createImage()
参考。
例子
PImage tower = loadImage("tower.jpg");
tower.save("outputImage.jpg");
size(100, 100);
PImage tower = loadImage("tower.jpg");
PImage newImage = createImage(100, 100, RGB);
newImage = tower.get();
newImage.save("outputImage.jpg");
相关用法
- Processing PImage.set()用法及代码示例
- Processing PImage.pixels[]用法及代码示例
- Processing PImage.resize()用法及代码示例
- Processing PImage.width用法及代码示例
- Processing PImage.get()用法及代码示例
- Processing PImage.loadPixels()用法及代码示例
- Processing PImage.filter()用法及代码示例
- Processing PImage.updatePixels()用法及代码示例
- Processing PImage.mask()用法及代码示例
- Processing PImage.blend()用法及代码示例
- Processing PImage.copy()用法及代码示例
- Processing PImage.height用法及代码示例
- Processing PImage用法及代码示例
- Processing PI用法及代码示例
- Processing Pulse用法及代码示例
- Processing PShader用法及代码示例
- Processing PVector.set()用法及代码示例
- Processing PShape.enableStyle()用法及代码示例
- Processing PVector.mag()用法及代码示例
- Processing PWM.set()用法及代码示例
- Processing PVector.normalize()用法及代码示例
- Processing PVector.limit()用法及代码示例
- Processing PShape用法及代码示例
- Processing PFont.list()用法及代码示例
- Processing PVector.div()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 PImage.save()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。