Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding loadBlob() docs #7694

Open
wants to merge 1 commit into
base: dev-2.0
Choose a base branch
from
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
49 changes: 48 additions & 1 deletion src/io/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,54 @@ function files(p5, fn){
}
}
};


/**
* Loads a file at the given path as a Blob, then returns the resulting data or
* passes it to a success callback function, if provided. On load, this function
* returns a `Promise` that resolves to a Blob containing the file data.
*
* @method loadBlob
* @param {String|Request} path - The path or Request object pointing to the file
* you want to load.
* @param {Function} [successCallback] - Optional. A function to be called if the
* file successfully loads, receiving the
* resulting Blob as its only argument.
* @param {Function} [errorCallback] - Optional. A function to be called if an
* error occurs during loading; receives the
* error object as its only argument.
* @returns {Promise<Blob>} A promise that resolves with the loaded Blob.
*
* @example
* <div>
* <code>
* let myBlob;
*
* async function setup() {
* createCanvas(200, 200);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we might have to add noLoop(), otherwise the background(220) in draw will clear the image call in the next frame.

*
* try {
* // 1. Load an image file as a Blob.
* myBlob = await loadBlob('assets/flower-1.png');
*
* // 2. Convert the Blob into an object URL.
* const objectUrl = URL.createObjectURL(myBlob);
*
* // 3. Load that object URL into a p5.Image.
* loadImage(objectUrl, (img) => {
* // 4. Display the loaded image.
* image(img, 0, 0, width, height);
* });
* } catch (err) {
* console.error('Error loading blob:', err);
* }
* }
*
* function draw() {
* background(220);
* }
* </code>
* </div>
*/
fn.loadBlob = async function(path, successCallback, errorCallback) {
try{
const { data } = await request(path, 'blob');
Expand Down