( begin auto-generated from saveBytes.xml ) Opposite of loadBytes() , will write an entire array of bytes to a file. The data is saved in binary format. This file is saved to the sketch's folder, which is opened by selecting "Show sketch folder" from the "Sketch" menu. It is not
(String filename, byte[] data)
| 7805 | * @see PApplet#saveStrings(String, String[]) |
| 7806 | */ |
| 7807 | public void saveBytes(String filename, byte[] data) { |
| 7808 | saveBytes(saveFile(filename), data); |
| 7809 | } |
| 7810 | |
| 7811 | |
| 7812 | /** |
nothing calls this directly
no test coverage detected