From 3639fe3a8b3d4ab0d12f03daf9a7108d8cd01792 Mon Sep 17 00:00:00 2001 From: Jessie <64198289+JessieJiang1011@users.noreply.github.com> Date: Tue, 23 May 2023 22:01:17 +0800 Subject: [PATCH] docs(typo): in imageLoader.md (#629) --- packages/docs/docs/concepts/cornerstone-core/imageLoader.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/docs/concepts/cornerstone-core/imageLoader.md b/packages/docs/docs/concepts/cornerstone-core/imageLoader.md index e5a7fba730..0ff2c1d467 100644 --- a/packages/docs/docs/concepts/cornerstone-core/imageLoader.md +++ b/packages/docs/docs/concepts/cornerstone-core/imageLoader.md @@ -15,7 +15,7 @@ an [`Image Object`](./images.md). Since loading images usually requires a call t 1. `ImageLoaders` register themselves using [`registerImageLoader`](/api/core/namespace/imageLoader#registerImageLoader) API with cornerstone to load specific ImageId URL schemes 2. The application requests to load an image using the `loadImage` API for stack or `createAndCacheVolume` API for volume. 3. Cornerstone delegates the request to load the image to the `ImageLoader` registered with the URL scheme of the imageId. -4. The ImageLoader will return an `Image Load Object` containing a Promise which it will resolve with the corresponding Image Object once it has obtained the pixel data. Obtaining the pixel data may may require a call to a remote server using `XMLHttpRequest`, decompression of the pixel data (e.g. from JPEG 2000), and conversion of the pixel data into the format that Cornerstone understands (e.g. RGB vs YBR color). +4. The ImageLoader will return an `Image Load Object` containing a Promise which it will resolve with the corresponding Image Object once it has obtained the pixel data. Obtaining the pixel data may require a call to a remote server using `XMLHttpRequest`, decompression of the pixel data (e.g. from JPEG 2000), and conversion of the pixel data into the format that Cornerstone understands (e.g. RGB vs YBR color). 5. The [Image Object](./images.md) passed back by the resolved Promise is then displayed using `renderingEngine` API. ## Register Image Loader