Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update loading_displaying.js
  • Loading branch information
VatoGamtsemlidze authored Jan 10, 2024
commit 7f8e0994fb1db8f3a49daea849ef501c45124079
3 changes: 3 additions & 0 deletions src/image/loading_displaying.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ p5.prototype.loadImage = function(path, successCallback, failureCallback) {
p5.prototype.saveGif = async function(
fileName,
duration,
returnBlobOnly,
options = {
delay: 0,
units: 'seconds',
Expand Down Expand Up @@ -504,6 +505,8 @@ p5.prototype.saveGif = async function(
setTimeout(() => p.remove(), notificationDuration * 1000);
}

if(returnBlobOnly) return blob;

p5.prototype.downloadFile(blob, fileName, extension);
};

Expand Down