b_closepl.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* This file is part of the GNU plotutils package. Copyright (C) 1995,
  2. 1996, 1997, 1998, 1999, 2000, 2005, 2008, Free Software Foundation, Inc.
  3. The GNU plotutils package is free software. You may redistribute it
  4. and/or modify it under the terms of the GNU General Public License as
  5. published by the Free Software foundation; either version 2, or (at your
  6. option) any later version.
  7. The GNU plotutils package is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. General Public License for more details.
  11. You should have received a copy of the GNU General Public License along
  12. with the GNU plotutils package; see the file COPYING. If not, write to
  13. the Free Software Foundation, Inc., 51 Franklin St., Fifth Floor,
  14. Boston, MA 02110-1301, USA. */
  15. #include "sys-defines.h"
  16. #include "extern.h"
  17. #include "xmi.h"
  18. bool
  19. _pl_b_end_page (S___(Plotter *_plotter))
  20. {
  21. int retval;
  22. /* Possibly output the page's bitmap. In the base BitmapPlotter class
  23. this is a no-op (see below), but it may do something in derived
  24. classes. */
  25. retval = _maybe_output_image (S___(_plotter));
  26. /* tear down */
  27. _pl_b_delete_image (S___(_plotter));
  28. return (retval < 0 ? false : true);
  29. }
  30. /* tear down image, i.e. deallocate libxmi canvas */
  31. void
  32. _pl_b_delete_image (S___(Plotter *_plotter))
  33. {
  34. /* deallocate libxmi's drawing canvas (and painted set struct too) */
  35. miDeleteCanvas ((miCanvas *)_plotter->b_canvas);
  36. _plotter->b_canvas = (void *)NULL;
  37. miDeletePaintedSet ((miPaintedSet *)_plotter->b_painted_set);
  38. _plotter->b_painted_set = (void *)NULL;
  39. }
  40. /* This is the BitmapPlotter-specific version of the _maybe_output_image()
  41. method, which is invoked when a page is finished. It's a no-op; in
  42. derived classes such as the PNMPlotter and PNGPlotter classes, it's
  43. overridden by a version that actually does something. */
  44. int
  45. _pl_b_maybe_output_image (S___(Plotter *_plotter))
  46. {
  47. return 0;
  48. }