Class ColorConvertParams

java.lang.Object
com.datalogics.PDFL.ColorConvertParams

public class ColorConvertParams extends Object
Holds parameters to be passed to a color convert method. This includes the actions to take in case of a match. Each object is compared against the selection criteria for each of the actions, in order, until a matching action is found.
  • Constructor Details

    • ColorConvertParams

      public ColorConvertParams(List<ColorConvertActions> convActions)
      Default constructor for the ColorConvertParams class. Sets default values to the members.
  • Method Details

    • delete

      public void delete()
    • getColorConvActions

      public List<ColorConvertActions> getColorConvActions()
      The ColorConvActions to take.
    • setColorConvActions

      public void setColorConvActions(List<ColorConvertActions> newActions)
    • getAllowLossyCompression

      public boolean getAllowLossyCompression()
      If true, DCT or JPX encoding will be used resulting in a smaller PDF. If false, FlateDecoding will be used instead.
    • setAllowLossyCompression

      public void setAllowLossyCompression(boolean newAllowLossyCompression)
    • getDefaultCMYK

      public ColorProfile getDefaultCMYK()
      Gets / Sets a default CMYK Color Profile.
    • setDefaultCMYK

      public void setDefaultCMYK(ColorProfile defaultCMYK)
    • getDefaultGray

      public ColorProfile getDefaultGray()
      Gets / Sets a default Gray Color Profile.
    • setDefaultGray

      public void setDefaultGray(ColorProfile defaultGray)
    • getDefaultRGB

      public ColorProfile getDefaultRGB()
      Gets / Sets a default RGB Color Profile.
    • setDefaultRGB

      public void setDefaultRGB(ColorProfile defaultRGB)
    • getIntentCMYK

      public RenderIntent getIntentCMYK()
      Gets / Sets a default CMYK Render Intent.
    • setIntentCMYK

      public void setIntentCMYK(RenderIntent intentCMYK)
    • getIntentGray

      public RenderIntent getIntentGray()
      Gets / Sets a default Gray Render Intent.
    • setIntentGray

      public void setIntentGray(RenderIntent intentGray)
    • getIntentRGB

      public RenderIntent getIntentRGB()
      Gets / Sets a default RGB Render Intent.
    • setIntentRGB

      public void setIntentRGB(RenderIntent intentRGB)