Getting started with Processing 第十三章——延伸

Posted fbsharl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Getting started with Processing 第十三章——延伸相关的知识,希望对你有一定的参考价值。

导入库:

导入库的名称为:import processing.libName.*

声音

播放声音

支持的格式:wav,aiff,mp3
声明: SoundFile blip;
创建:blip = new SoundFile(this,"filename");
对象可以使用的函数:loop() 和 play()

接收声音(麦克风)

声明: AudioIn mic; Amplitude amp;
创建: 创建声音输入,mic = new AudioIn(this,0);
创建幅度分析器amp = new Amplitude(this);
Amplitude 可以使用的函数:analyze()在任何时候读取话筒的声音数据

创建正弦振荡器

声明:SinOsc sine;
创建:sine = new SinOsc(this);

图像和 PDF 导出

导出图像

函数:saveFrame()函数
内容:saveFrame("output-####.png")

PDF导出

首先需要导入库:import processing.pdf.*
在 setup()中,size(600,800,PDF,"filename.pdf")


















以上是关于Getting started with Processing 第十三章——延伸的主要内容,如果未能解决你的问题,请参考以下文章

Getting Started with Erlang

Getting Started with Matplotlib

Getting started with roswtf

Getting Started with LLVM

A guide to getting started with boost::asio

Getting started with Chrome Dev Editor