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
The consumer has a MAX_IMAGE_HEIGHT, MAX_IMAGE_WIDTH, and MAX_IMAGE_FRAMES to limit the size of the images that are downloaded and opened by consumers. If images are too large, the consumer can get killed due to the memory usage. This can lead to a crash loop, where the consumer is never able to "fail" the image because it is killed to quickly.
The frontend and ImageJ plugin should both attempt to limit the uploading of images that exceed the maximum limits. However, zip file uploads cannot be easily inspected and will require fixes to the consumer itself.
The consumer needs to be able to parse the dimensions of the image prior to loading it, and fail if necessary before consuming the memory.
The text was updated successfully, but these errors were encountered:
The consumer has a
MAX_IMAGE_HEIGHT
,MAX_IMAGE_WIDTH
, andMAX_IMAGE_FRAMES
to limit the size of the images that are downloaded and opened by consumers. If images are too large, the consumer can get killed due to the memory usage. This can lead to a crash loop, where the consumer is never able to "fail" the image because it is killed to quickly.The frontend and ImageJ plugin should both attempt to limit the uploading of images that exceed the maximum limits. However, zip file uploads cannot be easily inspected and will require fixes to the consumer itself.
The consumer needs to be able to parse the dimensions of the image prior to loading it, and fail if necessary before consuming the memory.
The text was updated successfully, but these errors were encountered: