Codota Logo
CSSUtilities.convertColorInterpolationFilters
Code IndexAdd Codota to your IDE (free)

How to use
convertColorInterpolationFilters
method
in
org.apache.batik.bridge.CSSUtilities

Best Java code snippets using org.apache.batik.bridge.CSSUtilities.convertColorInterpolationFilters (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: apache/batik

/**
 * Handles the 'color-interpolation-filters' CSS property.
 *
 * @param filter the filter
 * @param filterElement the filter element
 */
protected static void handleColorInterpolationFilters(Filter filter,
                           Element filterElement) {
  if (filter instanceof FilterColorInterpolation) {
    boolean isLinear
      = CSSUtilities.convertColorInterpolationFilters(filterElement);
    // System.out.println("IsLinear: " + isLinear +
    //                    " Filter: " + filter);
    ((FilterColorInterpolation)filter).setColorSpaceLinear(isLinear);
  }
}
origin: org.apache.xmlgraphics/batik-bridge

/**
 * Handles the 'color-interpolation-filters' CSS property.
 *
 * @param filter the filter
 * @param filterElement the filter element
 */
protected static void handleColorInterpolationFilters(Filter filter,
                           Element filterElement) {
  if (filter instanceof FilterColorInterpolation) {
    boolean isLinear
      = CSSUtilities.convertColorInterpolationFilters(filterElement);
    // System.out.println("IsLinear: " + isLinear +
    //                    " Filter: " + filter);
    ((FilterColorInterpolation)filter).setColorSpaceLinear(isLinear);
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Handles the 'color-interpolation-filters' CSS property.
 *
 * @param filter the filter
 * @param filterElement the filter element
 */
protected static void handleColorInterpolationFilters(Filter filter,
                           Element filterElement) {
  if (filter instanceof FilterColorInterpolation) {
    boolean isLinear
      = CSSUtilities.convertColorInterpolationFilters(filterElement);
    // System.out.println("IsLinear: " + isLinear +
    //                    " Filter: " + filter);
    ((FilterColorInterpolation)filter).setColorSpaceLinear(isLinear);
  }
}
org.apache.batik.bridgeCSSUtilitiesconvertColorInterpolationFilters

Javadoc

Returns the color space for the specified filter element. Checks the 'color-interpolation-filters' property.

Popular methods of CSSUtilities

  • convertDisplay
    Returns true if the specified element has to be displayed, false otherwise. Checks the 'display' pro
  • computeStyleAndURIs
    Partially computes the style in the 'def' tree and set it in the 'use' tree. Note: This method must
  • convertClip
    Returns an array of floating offsets representing the 'clip' property or null if 'auto'. The offsets
  • convertClipPath
    Returns a Clip referenced by the specified element and which applies on the specified graphics node.
  • convertClipRule
    Returns the 'clip-rule' for the specified element.
  • convertColorInterpolation
    Returns the color space for the specified element. Checks the 'color-interpolation' property
  • convertColorRendering
    Fills the rendering hints for the specified element or do nothing if none has been specified. If the
  • convertCursor
    Returns the Cursor corresponding to the input element's cursor property
  • convertEnableBackground
    Returns the subregion of user space where access to the background image is allowed to happen.
  • convertFillRule
    Returns the 'fill-rule' for the specified element.
  • convertFilter
    Returns a Filter referenced by the specified element and which applies on the specified graphics nod
  • convertFloodColor
    Converts the color defined on the specified element to a Color.
  • convertFilter,
  • convertFloodColor,
  • convertImageRendering,
  • convertLightingColor,
  • convertMask,
  • convertOpacity,
  • convertOverflow,
  • convertPointerEvents,
  • convertShapeRendering

Popular in Java

  • Parsing JSON documents to java classes using gson
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
  • notifyDataSetChanged (ArrayAdapter)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now