2009-05-21 7 views

Répondre

0
  1. utilisation infranview changer l'arrière-plan de l'image du blanc au transparent (en enregistrant au format PNG).
  2. utilisez flex comme d'habitude
  3. profit!
2

Voici l'extrait de code qui vous donne les fonctionnalités attendues.

var sourceBitmap:BitmapData = new BitmapData(myChart.width, myChart.height,true,0x000000); 
sourceBitmap.draw(myChart); 
//prev image is the "Image" variable name 
prevImage.source = new Bitmap(sourceBitmap); 
Questions connexes