You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FopImage.java 566B

123456789101112131415161718192021222324
  1. /* modified by JKT to integrate into 0.12.0 */
  2. //Title: BoBoGi FOP
  3. //Version:
  4. //Copyright: Copyright (c) 1999
  5. //Author: Sergio Botti
  6. //Company: Dibe Elsag
  7. //Description: Part in xml to pdf converter
  8. package org.apache.xml.fop.image;
  9. public interface FopImage {
  10. public int getpixelwidth();
  11. public int getpixelheight();
  12. public int getWidth();
  13. public int getHeight();
  14. public int getX();
  15. public int getY();
  16. public String gethref();
  17. public int[] getimagemap();
  18. public boolean getcolor();
  19. public int getbitperpixel();
  20. }