Package com.itextpdf.text.pdf.spatial
Class CoordinateSystem
- java.lang.Object
-
- com.itextpdf.text.pdf.PdfObject
-
- com.itextpdf.text.pdf.PdfDictionary
-
- com.itextpdf.text.pdf.spatial.CoordinateSystem
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
GeographicCoordinateSystem
,ProjectedCoordinateSystem
public abstract class CoordinateSystem extends PdfDictionary
The value of the GCS or DCS entry of a geospatial measure dictionary. Can be a GeographicCoordinateSystem or a ProjectedCoordinateSystem.- Since:
- 5.1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CoordinateSystem(PdfName type)
Creates a specific type of CoordinateSystem: GEOGCS (GeographicCoordinateSystem) or PROJCS (ProjectedCoordinateSystem).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setEPSG(int epsg)
Sets the EPSG code.void
setWKT(java.lang.String wkt)
Sets the Well Known Text.-
Methods inherited from class com.itextpdf.text.pdf.PdfDictionary
checkType, clear, contains, get, getAsArray, getAsBoolean, getAsDict, getAsIndirectObject, getAsName, getAsNumber, getAsStream, getAsString, getDirectObject, getKeys, isCatalog, isFont, isOutlineTree, isPage, isPages, merge, mergeDifferent, put, putAll, putEx, remove, size, toPdf, toString
-
Methods inherited from class com.itextpdf.text.pdf.PdfObject
canBeInObjStm, getBytes, getIndRef, isArray, isBoolean, isDictionary, isIndirect, isName, isNull, isNumber, isStream, isString, length, setContent, setIndRef, type
-
-
-
-
Constructor Detail
-
CoordinateSystem
public CoordinateSystem(PdfName type)
Creates a specific type of CoordinateSystem: GEOGCS (GeographicCoordinateSystem) or PROJCS (ProjectedCoordinateSystem).
-
-