Add timestamp to saved png file name
This commit is contained in:
@@ -221,7 +221,17 @@ function truncateString(str, maxLength = 40) {
|
|||||||
function mouseClicked() {
|
function mouseClicked() {
|
||||||
// Save the canvas content as an image file
|
// Save the canvas content as an image file
|
||||||
if (mouseX < 50 && mouseY < 50) {
|
if (mouseX < 50 && mouseY < 50) {
|
||||||
saveCanvas('nicechord-pianometer', 'png');
|
const now = new Date();
|
||||||
|
const strDate =
|
||||||
|
now.getFullYear() +
|
||||||
|
String(now.getMonth()+1).padStart(2, '0') +
|
||||||
|
String(now.getDate()).padStart(2, '0');
|
||||||
|
const strTime =
|
||||||
|
String(now.getHours()).padStart(2, '0') +
|
||||||
|
String(now.getMinutes()).padStart(2, '0') +
|
||||||
|
String(now.getSeconds()).padStart(2, '0');
|
||||||
|
const fileName = `nicechord-pianometer-${strDate}_${strTime}`;
|
||||||
|
saveCanvas(fileName, 'png');
|
||||||
}
|
}
|
||||||
if (mouseY > 76) {
|
if (mouseY > 76) {
|
||||||
if (mouseX <= 84) {
|
if (mouseX <= 84) {
|
||||||
@@ -245,4 +255,4 @@ function mouseClicked() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(mouseX, mouseY);
|
console.log(mouseX, mouseY);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user