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.

AFPPageFonts.java 2.1KB

* PDFImageHandler interface split into ImageHandler and PDFImageHandler. * Deleted AFPDataObjectInfoProvider and AFPImage*Factory implementations, and abstracted AbstractImageHandlerRegistry from PDFImageHandlerRegistry, creating AFPImageHandlerRegistry and AFPImageHandler so there is a common reuse of image handling implementation between AFP and PDF now. * RendererContext instantiation is now overridable in PrintRenderer. * Created AFPRendererContext that is able to provide AFPInfo. * toString() added to RendererContext for ease of use. * Removed GraphicsObjectPainterAFP. * Added package.html for AFP (sub)packages. * Abstracted AbstractFOPBridgeContext from PDFBridgeContext and provided AFPBridgeContext implementation. * Abstracted AbstractFOPTextElementBridge from PDFTextElementBridge and provided AFPTextElementBridge implementation. * Abstracted AbstractFOPImageElementBridge from PDFImageElementBridge and provided AFPImageElementBridge implementation. * Provided inline image support/handling in AFPGraphics2D for SVG. * Created NativeImageHandler interface. * Fix for path iterator filled line drawing in AFPGraphics2D adding coordinate drawing implementations GraphicsLineRelative and GraphicsFilletRelative (Thanks for the patch Jeremias). * Improved configuration.xml documentation for images mode/native setting in AFP renderer configuration. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@713747 13f79535-47bb-0310-9956-ffa450edef68
15 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.afp.fonts;
  19. /**
  20. * Holds the current page fonts
  21. */
  22. public class AFPPageFonts extends java.util.HashMap {
  23. private static final long serialVersionUID = -4991896259427109041L;
  24. /**
  25. * Default constructor
  26. */
  27. public AFPPageFonts() {
  28. super();
  29. }
  30. /**
  31. * Parameterized constructor
  32. *
  33. * @param fonts an existing set of afp page fonts
  34. */
  35. public AFPPageFonts(AFPPageFonts fonts) {
  36. super(fonts);
  37. }
  38. /**
  39. * Registers a font on the current page and returns font attributes
  40. *
  41. * @param fontName the internal font name
  42. * @param font the AFPFont
  43. * @param fontSize the font point size
  44. * @return newly registered AFPFontAttributes
  45. */
  46. public AFPFontAttributes registerFont(String fontName, AFPFont font, int fontSize) {
  47. String pageFontKey = fontName + "_" + fontSize;
  48. AFPFontAttributes afpFontAttributes = (AFPFontAttributes)super.get(pageFontKey);
  49. // Add to page font mapping if not already present
  50. if (afpFontAttributes == null) {
  51. afpFontAttributes = new AFPFontAttributes(fontName, font, fontSize);
  52. super.put(pageFontKey, afpFontAttributes);
  53. int fontRef = super.size();
  54. afpFontAttributes.setFontReference(fontRef);
  55. }
  56. return afpFontAttributes;
  57. }
  58. }