# Smoothing Bitmap

**URL:** https://forum.kirupa.com/t/smoothing-bitmap/301150
**Category:** flash
**Created:** [December 3, 2009, 10:46pm UTC](https://forum.kirupa.com/t/smoothing-bitmap/301150 "2009-12-03T22:46:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pardoner](https://avatars.discourse-cdn.com/v4/letter/p/5daacb/32.png) [@pardoner](https://forum.kirupa.com/u/pardoner)
#### Post date: [December 3, 2009, 10:46pm UTC](https://forum.kirupa.com/t/smoothing-bitmap/301150/1 "2009-12-03T22:46:47Z")

</div>

If I use smoothing on an image I loaded via the Loader class the Image doesn’t show up in the browser. It works fine in the Flash Player but not in the browser.

```auto

var image = new Loader();
image.contentLoaderInfo.addEventListener(Event.COMPLETE, imageCompleteHandler);
image.load( new URLRequest(_imageUrl) )

public function imageCompleteHandler(event:Event):void {
var img:Bitmap = _image.content as Bitmap;
img.smoothing = true;

image.width = 50;
image.scaleY = image.scaleX;
addChild(image);
}

```

anyone with any ideas why this image wouldn’t show up?
