You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use this library to generate some pyramids on the client side -- paired with an endpoint that returns S3-compatible signed urls.
I can't seem to find much documentation on tiling with either sharp or wasm-vips, I know by default vips will use the file system to save tiles on directories, so that's not an option in the browser, which will bring some limitations later on, that's fine for my use-case.
My hope is to load the image from an input field then generate each tile -> upload it -> move on.
I was hoping on finding some examples that go a bit more into depth around the methods and options available for tiling.
I'm happy to contribute some documentation after I figure it out.
The text was updated successfully, but these errors were encountered:
wasm-vips doesn't currently support creating image pyramids with dzsave, as it's a bit tricky in Wasm since it requires more threads than the current threshold defined here:
I'm trying to use this library to generate some pyramids on the client side -- paired with an endpoint that returns S3-compatible signed urls.
I can't seem to find much documentation on tiling with either sharp or wasm-vips, I know by default vips will use the file system to save tiles on directories, so that's not an option in the browser, which will bring some limitations later on, that's fine for my use-case.
My hope is to load the image from an input field then generate each tile -> upload it -> move on.
I was hoping on finding some examples that go a bit more into depth around the methods and options available for tiling.
I'm happy to contribute some documentation after I figure it out.
The text was updated successfully, but these errors were encountered: