public PDFFunction(int theFunctionType,
List theDomain,
List theRange,
StringBuffer theFunctionDataStream) {
super();
this.functionType = 4; // dang well better be 4;
this.functionDataStream = theFunctionDataStream;
this.domain = theDomain;
this.range = theRange;
}
create an complete Function object of Type 4, a postscript calculator function.
Use null for an optional object parameter if you choose not to use it.
For optional int parameters, pass the default. Parameters:
theDomain - List object of Double objects.
This is the domain of the function.
See page 264 of the PDF 1.3 Spec.
theRange - List object of Double objects.
This is the Range of the function.
See page 264 of the PDF 1.3 Spec.
theFunctionDataStream - This is a stream of arithmetic,
boolean, and stack operators and boolean constants.
I end up enclosing it in the '{' and '}' braces for you, so don't do it
yourself.
This attribute is required.
It's described on page 269 of the PDF 1.3 spec.
theFunctionType - The type of function which should be 4, as this is
a Postscript calculator function
|
public PDFFunction(int theFunctionType,
List theDomain,
List theRange,
List theCZero,
List theCOne,
double theInterpolationExponentN) {
super();
this.functionType = 2; // dang well better be 2;
this.cZero = theCZero;
this.cOne = theCOne;
this.interpolationExponentN = theInterpolationExponentN;
this.domain = theDomain;
this.range = theRange;
}
create an complete Function object of Type 2, an Exponential Interpolation function.
Use null for an optional object parameter if you choose not to use it.
For optional int parameters, pass the default. Parameters:
theDomain - List objects of Double objects.
This is the domain of the function.
See page 264 of the PDF 1.3 Spec.
theRange - List of Doubles that is the Range of the function.
See page 264 of the PDF 1.3 Spec.
theCZero - This is a vector of Double objects which defines the function result
when x=0.
This attribute is optional.
It's described on page 268 of the PDF 1.3 spec.
theCOne - This is a vector of Double objects which defines the function result
when x=1.
This attribute is optional.
It's described on page 268 of the PDF 1.3 spec.
theInterpolationExponentN - This is the inerpolation exponent.
This attribute is required.
PDF Spec page 268
theFunctionType - The type of the function, which should be 2.
|
public PDFFunction(int theFunctionType,
List theDomain,
List theRange,
List theFunctions,
List theBounds,
List theEncode) {
super();
this.functionType = 3; // dang well better be 3;
this.functions = theFunctions;
this.bounds = theBounds;
this.encode = theEncode;
this.domain = theDomain;
this.range = theRange;
}
create an complete Function object of Type 3, a Stitching function.
Use null for an optional object parameter if you choose not to use it.
For optional int parameters, pass the default. Parameters:
theDomain - List objects of Double objects.
This is the domain of the function.
See page 264 of the PDF 1.3 Spec.
theRange - List objects of Double objects.
This is the Range of the function.
See page 264 of the PDF 1.3 Spec.
theFunctions - A List of the PDFFunction objects that the stitching function stitches.
This attributed is required.
It is described on page 269 of the PDF spec.
theBounds - This is a vector of Doubles representing the numbers that,
in conjunction with Domain define the intervals to which each function from
the 'functions' object applies. It must be in order of increasing magnitude,
and each must be within Domain.
It basically sets how much of the gradient each function handles.
This attributed is required.
It's described on page 269 of the PDF 1.3 spec.
theEncode - List objects of Double objects.
This is the linear mapping of input values intop the domain
of the function's sample table. Default is hard to represent in
ascii, but basically [0 (Size0 1) 0 (Size1 1)...].
This attribute is required.
See page 270 in the PDF 1.3 spec.
theFunctionType - This is the function type. It should be 3,
for a stitching function.
|
public PDFFunction(int theFunctionType,
List theDomain,
List theRange,
List theSize,
int theBitsPerSample,
int theOrder,
List theEncode,
List theDecode,
StringBuffer theFunctionDataStream,
List theFilter) {
// See encode above, as it's also part of Type 3 Functions.
/* *************************TYPE 4************************** */
// See 'data' above.
super();
this.functionType = 0; // dang well better be 0;
this.size = theSize;
this.bitsPerSample = theBitsPerSample;
this.order = theOrder; // int
this.encode = theEncode; // vector of int
this.decode = theDecode; // vector of int
this.functionDataStream = theFunctionDataStream;
this.filter = theFilter; // vector of Strings
// the domain and range are actually two dimensional arrays.
// so if there's not an even number of items, bad stuff
// happens.
this.domain = theDomain;
this.range = theRange;
}
create an complete Function object of Type 0, A Sampled function.
Use null for an optional object parameter if you choose not to use it.
For optional int parameters, pass the default. Parameters:
theDomain - List objects of Double objects.
This is the domain of the function.
See page 264 of the PDF 1.3 Spec.
theRange - List objects of Double objects.
This is the Range of the function.
See page 264 of the PDF 1.3 Spec.
theSize - A List object of Integer objects.
This is the number of samples in each input dimension.
I can't imagine there being more or less than two input dimensions,
so maybe this should be an array of length 2.
See page 265 of the PDF 1.3 Spec.
theBitsPerSample - An int specifying the number of bits
used to represent each sample value.
Limited to 1,2,4,8,12,16,24 or 32.
See page 265 of the 1.3 PDF Spec.
theOrder - The order of interpolation between samples. Default is 1 (one). Limited
to 1 (one) or 3, which means linear or cubic-spline interpolation.
This attribute is optional.
See page 265 in the PDF 1.3 spec.
theEncode - List objects of Double objects.
This is the linear mapping of input values intop the domain
of the function's sample table. Default is hard to represent in
ascii, but basically [0 (Size0 1) 0 (Size1 1)...].
This attribute is optional.
See page 265 in the PDF 1.3 spec.
theDecode - List objects of Double objects.
This is a linear mapping of sample values into the range.
The default is just the range.
This attribute is optional.
Read about it on page 265 of the PDF 1.3 spec.
theFunctionDataStream - The sample values that specify
the function are provided in a stream.
This is optional, but is almost always used.
Page 265 of the PDF 1.3 spec has more.
theFilter - This is a vector of String objects which are the various filters that
have are to be applied to the stream to make sense of it. Order matters,
so watch out.
This is not documented in the Function section of the PDF 1.3 spec,
it was deduced from samples that this is sometimes used, even if we may never
use it in FOP. It is added for completeness sake.
theFunctionType - This is the type of function (0,2,3, or 4).
It should be 0 as this is the constructor for sampled functions.
|