IMPLEMNT.TEX
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. chapter{Implementation notes}label{implement}
  2. setheader{{it CHAPTER thechapter}}{}{}{}{}{{it CHAPTER thechapter}}%
  3. setfooter{thepage}{}{}{}{}{thepage}%
  4. The CImage library is derived from the wxImage code collated and
  5. developed by Alejandro Aguilar-Sierra.
  6. The original code had wxImage derived from the same base class
  7. as used by other implementation classes such as ImaGIF. To read a file,
  8. a temporary ImaGIF (or other) object was created, and then the data was
  9. copied into the wxImage object, and the temporary object deleted.
  10. I have rearranged things a bit so that CImage is derived from CObject,
  11. and contains a pointer to an implementation object derived CImageImpl.
  12. File I/O and other functionality is routed from CImage to the CImageImpl-derived
  13. object. When the CImage is saved as a different format, the implementation
  14. object is changed (requiring copying of some members).
  15. I have also eliminated dependencies on wxWindows, made use of CString
  16. instead of character pointers, corrected some memory leaks, replaced the
  17. DIB-writing code since the wxImage implementation appeared not to work,
  18. converted the demo app to MFC, and written the on-line help (which could
  19. do with expansion).