Codota Logo
WarpRIF
Code IndexAdd Codota to your IDE (free)

How to use
WarpRIF
in
it.geosolutions.jaiext.warp

Best Java code snippets using it.geosolutions.jaiext.warp.WarpRIF (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ArrayList a =
  • Codota Iconnew ArrayList<String>()
  • Codota Iconnew ArrayList()
  • Codota Iconnew ArrayList<Object>()
  • Smart code suggestions by Codota
}
origin: geotools/geotools

PlanarImage.wrapRenderedImage(new WarpRIF().create(paramBlk, localHints));
origin: it.geosolutions.jaiext.warp/jt-warp

/**
 * Registers this descriptor if it is not already registered.
 * 
 * @return <code>true</code> in case the operation succeds, <code>false</code> otherwise.
 * 
 */
public static final boolean register() {
  OperationRegistry registry = JAI.getDefaultInstance().getOperationRegistry();
  try {
    final OperationDescriptor op = new WarpDescriptor();
    final String descName = op.getName();
    if (registry.getDescriptor(RenderedRegistryMode.MODE_NAME, descName) != null)
      return false;
    registry.registerDescriptor(op);
    final RenderedImageFactory rif = new WarpRIF();
    registry.registerFactory(RenderedRegistryMode.MODE_NAME, descName,
        "it.geosolutions.jaiext", rif);
    return true;
  } catch (Exception e) {
    LOGGER.log(Level.WARNING, e.getLocalizedMessage(), e);
  }
  return false;
}
origin: locationtech/geowave

   backgroundValues);
return super.create(paramBlock, renderHints);
origin: geosolutions-it/jai-ext

/**
 * Registers this descriptor if it is not already registered.
 * 
 * @return <code>true</code> in case the operation succeds, <code>false</code> otherwise.
 * 
 */
public static final boolean register() {
  OperationRegistry registry = JAI.getDefaultInstance().getOperationRegistry();
  try {
    final OperationDescriptor op = new WarpDescriptor();
    final String descName = op.getName();
    if (registry.getDescriptor(RenderedRegistryMode.MODE_NAME, descName) != null)
      return false;
    registry.registerDescriptor(op);
    final RenderedImageFactory rif = new WarpRIF();
    registry.registerFactory(RenderedRegistryMode.MODE_NAME, descName,
        "it.geosolutions.jaiext", rif);
    return true;
  } catch (Exception e) {
    LOGGER.log(Level.WARNING, e.getLocalizedMessage(), e);
  }
  return false;
}
it.geosolutions.jaiext.warpWarpRIF

Javadoc

A RIF supporting the "Warp" operation in the rendered image layer.

Most used methods

  • <init>
    Constructor.
  • create
    Creates a new instance of warp operator according to the warp object and interpolation method.

Popular in Java

  • Creating JSON documents from java classes using gson
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • getApplicationContext (Context)
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • StringTokenizer (java.util)
    The string tokenizer class allows an application to break a string into tokens. The tokenization met
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Notification (javax.management)
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
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