fonts.xml 719 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
  6. <bean id="fontSansSerifFamily" class="net.sf.jasperreports.engine.fonts.SimpleFontFamily">
  7. <property name="name" value="SansSerif"/>
  8. <property name="normal" value="fonts/arial.ttf"/>
  9. <property name="bold" value="fonts/arialbd.ttf"/>
  10. <property name="italic" value="fonts/ariali.ttf"/>
  11. <property name="boldItalic" value="fonts/arialbi.ttf"/>
  12. <property name="pdfEmbedded" value="false"/>
  13. </bean>
  14. </beans>