blob: 93aaa8b1a3d2890525609018f064f249f6d9c4ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/*
* 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.
*/
/* $Id$ */
package org.apache.fop.render.afp;
import org.apache.fop.afp.AFPResourceLevelDefaults;
/**
* Interface used to customize the AFP renderer or document handler.
*/
public interface AFPCustomizable {
/**
* Sets the number of bits used per pixel
*
* @param bitsPerPixel
* number of bits per pixel
*/
void setBitsPerPixel(int bitsPerPixel);
/**
* Sets whether images are color or not
*
* @param colorImages
* color image output
*/
void setColorImages(boolean colorImages);
/**
* Sets whether images are supported natively or not
*
* @param nativeImages
* native image support
*/
void setNativeImagesSupported(boolean nativeImages);
/**
* Controls whether CMYK images (IOCA FS45) are enabled. By default, support is disabled
* for wider compatibility. When disabled, any CMYK image is converted to the selected
* color format.
* @param value true to enabled CMYK images
*/
void setCMYKImagesSupported(boolean value);
/**
* Sets the shading mode for painting filled rectangles.
* @param shadingMode the shading mode
*/
void setShadingMode(AFPShadingMode shadingMode);
/**
* Sets the dithering quality setting to use when converting images to monochrome images.
* @param quality Defines the desired quality level for the conversion.
* Valid values: a value between 0.0f (fastest) and 1.0f (best)
*/
void setDitheringQuality(float quality);
/**
* Sets the output/device resolution
*
* @param resolution
* the output resolution (dpi)
*/
void setResolution(int resolution);
/**
* Returns the output/device resolution.
*
* @return the resolution in dpi
*/
int getResolution();
/**
* Sets the default resource group file path
* @param filePath the default resource group file path
*/
void setDefaultResourceGroupFilePath(String filePath);
/**
* Sets the resource level defaults. The object passed in provides information which resource
* level shall be used by default for various kinds of resources.
* @param defaults the resource level defaults
*/
void setResourceLevelDefaults(AFPResourceLevelDefaults defaults);
}
|