# Load Image/Smoothing

**URL:** https://forum.kirupa.com/t/load-image-smoothing/300110
**Category:** flash
**Created:** [November 16, 2009, 10:45am UTC](https://forum.kirupa.com/t/load-image-smoothing/300110 "2009-11-16T10:45:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![shupe](https://avatars.discourse-cdn.com/v4/letter/s/e68b1a/32.png) [@shupe](https://forum.kirupa.com/u/shupe)
#### Post date: [November 16, 2009, 10:45am UTC](https://forum.kirupa.com/t/load-image-smoothing/300110/1 "2009-11-16T10:45:45Z")

</div>

Hello -

New to AS3 - having some problems.

I have used fileRef to allow user to load an external image to a swf. This works well.

But… How do I access the image to add smoothing to it?

Here is a code snippet:

```auto
function onFileLoaded(e:Event):void {
    var loader:Loader = new Loader();
    loader.loadBytes(e.target.data);
    this.mcImage.addChild(loader);

```

Any help would be really appreciated - Shupe
