protected function application1_creationCompleteHandler(event:FlexEvent):void { var width :int = imgID.width; var height :int = imgID.height; var bitmapData:BitmapData =new BitmapData(width,height); bitmapData.draw(imgID);
var byteArr:ByteArray = bitmapData.getPixels(new Rectangle(0,0,width,height)); var byteArr123:ByteArray =new JPEGEncoder().encodeByteArray(byteArr,width,height);
webService.UploadFile(byteArr123,"123.png"); }
protected function webService_faultHandler(event:FaultEvent):void { Alert.show(event.fault.toString()); }
protected function webService_successHandler(event:ResultEvent):void { Alert.show(event.result.toString()); }