# Unable to upload correct size image with {{images-uploader}} component

**URL:** https://meta.discourse.org/t/unable-to-upload-correct-size-image-with-images-uploader-component/230794
**Category:** Development
**Created:** [June 22, 2022, 6:02pm UTC](https://meta.discourse.org/t/unable-to-upload-correct-size-image-with-images-uploader-component/230794 "2022-06-22T18:02:12Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![keegan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/keegan/32/383395_2.png) [@keegan](https://meta.discourse.org/u/keegan)
#### Post date: [June 22, 2022, 6:02pm UTC](https://meta.discourse.org/t/unable-to-upload-correct-size-image-with-images-uploader-component/230794/1 "2022-06-22T18:02:12Z")

</div>

I’m working on a plugin that has a modal in the toolbar popup menu options. Inside the modal, I would like to prompt the user to upload a set of image files.

When using the `{{images-uploader}}` component, I noticed the image size is always restricted to a width and height of 360px. This is not the case when uploading using the regular composer uploader as it uploads the image at its full size.

I’ve also tried using the `{{uppy-image-uploader}}` component and it successfully outputs the correct image size, however, that component does not allow for multiple uploads, which is a requirement for me.

So, I’m wondering if anyone has any advice on how I can accomplish getting **multiple** full sized images uploaded using either of these components?

---

<div class="post-metadata">

### Author: ![keegan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/keegan/32/383395_2.png) [@keegan](https://meta.discourse.org/u/keegan)
#### Post date: [July 6, 2022, 7:27pm UTC](https://meta.discourse.org/t/unable-to-upload-correct-size-image-with-images-uploader-component/230794/2 "2022-07-06T19:27:18Z")

</div>

**Update** : Found the solution to this issue. The component has `type: avatar` by default so by passing `type: image` allows the upload to be full size.

```plaintext
    <ImagesUploader
      @uploading={{this.uploading}}
      @done={{action "uploadDone"}}
      @id="cover-image-uploader"
      @type="image"
    />

```
