get the size of movie

  好象通过shockwave   flash   ocx控件无法取得movie的原始大小,   不过我已经找到了解决的办法:直接读取文件,在文件头提取出movie大小即可.  
  附:  
  swf文件头结构  
  F                       1Bytes  
  W                       1Bytes  
  S                       1Bytes  
  文件版本         1Bytes  
  文件大小         4Bytes  
  nBits               5Bits  
  xMin                 SB[nBits]  
  xMax                 SB[nBits]  
  yMin                 SB[nBits]  
  yMax                 SB[nBits]  
   
  (xMax-xMin)/20即为Width  
  (yMax-yMin)/20即为Height  

你可能感兴趣的:(get the size of movie)