Class: QgsRasterRendererUtils¶
Utility functions for raster renderers.
Added in version 3.16.
Static Methods
Parses an exported color map file at the specified path and extracts the stored color ramp items and ramp shader type. |
|
Exports a list of color ramp items and ramp shader type to a color map file at the specified path. |
- class qgis.core.QgsRasterRendererUtils[source]¶
Bases:
object
- static parseColorMapFile(path: str | None)[source]¶
Parses an exported color map file at the specified
path
and extracts the stored color rampitems
and ramp shadertype
.Returns
True
if the parsing was successful. If not, a list oferrors
will be generated.See also
- Parameters:
path (Optional[str]) -> (bool)
- static saveColorMapFile(path: str | None, items: Iterable[QgsColorRampShader.ColorRampItem], type: Qgis.ShaderInterpolationMethod) bool [source]¶
Exports a list of color ramp
items
and ramp shadertype
to a color map file at the specifiedpath
.Returns
True
if the save was successful.See also
- Parameters:
path (Optional[str])
items (Iterable[QgsColorRampShader.ColorRampItem])
- Return type:
bool