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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。