Package org.apache.fop.render
Class ImageHandlerUtil
- java.lang.Object
-
- org.apache.fop.render.ImageHandlerUtil
-
public final class ImageHandlerUtil extends java.lang.Object
Utility methods for image handling.
-
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlgraphics.util.QName
CONVERSION_MODE
conversion-mode extension attributestatic java.lang.String
CONVERSION_MODE_BITMAP
Conversion mode: indicates that the image shall be converted to a bitmap.
-
Constructor Summary
Constructors Modifier Constructor Description private
ImageHandlerUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isConversionModeBitmap(java.lang.String mode)
Indicates whether the image conversion mode is set to bitmap mode, i.e.static boolean
isConversionModeBitmap(java.util.Map foreignAttributes)
Indicates whether the image conversion mode is set to bitmap mode, i.e.
-
-
-
Field Detail
-
CONVERSION_MODE
public static final org.apache.xmlgraphics.util.QName CONVERSION_MODE
conversion-mode extension attribute
-
CONVERSION_MODE_BITMAP
public static final java.lang.String CONVERSION_MODE_BITMAP
Conversion mode: indicates that the image shall be converted to a bitmap.- See Also:
- Constant Field Values
-
-
Method Detail
-
isConversionModeBitmap
public static boolean isConversionModeBitmap(java.lang.String mode)
Indicates whether the image conversion mode is set to bitmap mode, i.e. the image shall be converted to a bitmap.- Parameters:
mode
- the conversion mode- Returns:
- true if conversion mode is "bitmap"
-
isConversionModeBitmap
public static boolean isConversionModeBitmap(java.util.Map foreignAttributes)
Indicates whether the image conversion mode is set to bitmap mode, i.e. the image shall be converted to a bitmap.- Parameters:
foreignAttributes
- a map of foreign attributes (Map<QName, Object>)- Returns:
- true if conversion mode is "bitmap"
-
-