# • Clone a bitmap, or something like that

**URL:** https://forum.kirupa.com/t/clone-a-bitmap-or-something-like-that/237416
**Category:** flash
**Created:** [August 30, 2007, 5:35am UTC](https://forum.kirupa.com/t/clone-a-bitmap-or-something-like-that/237416 "2007-08-30T05:35:14Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dimitri\_c](https://avatars.discourse-cdn.com/v4/letter/d/848f3c/32.png) [@dimitri\_c](https://forum.kirupa.com/u/dimitri_c)
#### Post date: [August 30, 2007, 5:35am UTC](https://forum.kirupa.com/t/clone-a-bitmap-or-something-like-that/237416/1 "2007-08-30T05:35:14Z")

</div>

Hello -

To avoid to load two times same picture, I would like to “clone” and apply a new blur filter to a picture I loaded on the screen via **displayContainer.load(new URLRequest(“myPicture.jpg”))**, see code below.  
Load the picture isn’t the problem, but I can’t “clone”, let alone apply the blur filter to this cloned picture.

```auto

	var mapIntroLoader:Loader = new Loader();
		mapIntroLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, mapIntroLoaded);
		mapIntroLoader.load(new URLRequest("mapIntro.jpg"));
	var mapContainer_mc:Sprite = new Sprite();
		mapContainer_mc.addChild(mapIntroLoader);
		mainContainer_sp.addChild(mapContainer_mc);

```

Could someone, please, post a short example to show me how to clone and apply a filter? :sen:

Thank very much, have a nice day…

- Dimitri [http://www.thebend.be/personal/](http://www.thebend.be/personal/)
