Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.bridge;
import java.util.List;
import java.util.LinkedList;
import org.apache.batik.css.engine.CSSEngine;
import org.apache.batik.css.engine.FontFaceRule;
import org.apache.batik.css.engine.StyleMap;
import org.apache.batik.css.engine.SVGCSSEngine;
import org.apache.batik.css.engine.value.Value;
import org.apache.batik.css.engine.value.ValueConstants;
import org.apache.batik.css.engine.value.ValueManager;
import org.apache.batik.gvt.font.GVTFontFamily;
import org.apache.batik.util.ParsedURL;
import org.apache.batik.util.SVGConstants;
import org.w3c.dom.css.CSSValue;
import org.w3c.dom.css.CSSPrimitiveValue;
/**
* This class represents a <font-face> element or @font-face rule
*
* @author Bella Robinson
* @version $Id: CSSFontFace.java 1805408 2017-08-18 12:21:52Z ssteiner $
*/
public class CSSFontFace extends FontFace implements SVGConstants {
GVTFontFamily fontFamily = null;
/**
* Constructes an CSSFontFace with the specfied font-face attributes.
*/
public CSSFontFace
(List srcs,
String familyName, float unitsPerEm, String fontWeight,
String fontStyle, String fontVariant, String fontStretch,
float slope, String panose1, float ascent, float descent,
float strikethroughPosition, float strikethroughThickness,
float underlinePosition, float underlineThickness,
float overlinePosition, float overlineThickness) {
super(srcs,
familyName, unitsPerEm, fontWeight, fontStyle,
fontVariant, fontStretch, slope, panose1, ascent, descent,
strikethroughPosition, strikethroughThickness,
underlinePosition, underlineThickness,
overlinePosition, overlineThickness);
}
protected CSSFontFace(String familyName) {
super(familyName);
}
public static CSSFontFace createCSSFontFace(CSSEngine eng,
FontFaceRule ffr) {
StyleMap sm = ffr.getStyleMap();
String familyName = getStringProp
(sm, eng, SVGCSSEngine.FONT_FAMILY_INDEX);
CSSFontFace ret = new CSSFontFace(familyName);
Value v;
v = sm.getValue(SVGCSSEngine.FONT_WEIGHT_INDEX);
if (v != null)
ret.fontWeight = v.getCssText();
v = sm.getValue(SVGCSSEngine.FONT_STYLE_INDEX);
if (v != null)
ret.fontStyle = v.getCssText();
v = sm.getValue(SVGCSSEngine.FONT_VARIANT_INDEX);
if (v != null)
ret.fontVariant = v.getCssText();
v = sm.getValue(SVGCSSEngine.FONT_STRETCH_INDEX);
if (v != null)
ret.fontStretch = v.getCssText();
v = sm.getValue(SVGCSSEngine.SRC_INDEX);
ParsedURL base = ffr.getURL();
if ((v != null) && (v != ValueConstants.NONE_VALUE)) {
if (v.getCssValueType() == CSSValue.CSS_PRIMITIVE_VALUE) {
ret.srcs = new LinkedList();
ret.srcs.add(getSrcValue(v, base));
} else if (v.getCssValueType() == CSSValue.CSS_VALUE_LIST) {
ret.srcs = new LinkedList();
for (int i=0; i