當前位置: 首頁>>代碼示例>>Python>>正文


Python QgsSymbolLayerV2Utils.encodeColor方法代碼示例

本文整理匯總了Python中qgis.core.QgsSymbolLayerV2Utils.encodeColor方法的典型用法代碼示例。如果您正苦於以下問題:Python QgsSymbolLayerV2Utils.encodeColor方法的具體用法?Python QgsSymbolLayerV2Utils.encodeColor怎麽用?Python QgsSymbolLayerV2Utils.encodeColor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在qgis.core.QgsSymbolLayerV2Utils的用法示例。


在下文中一共展示了QgsSymbolLayerV2Utils.encodeColor方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: set_hsv_value

# 需要導入模塊: from qgis.core import QgsSymbolLayerV2Utils [as 別名]
# 或者: from qgis.core.QgsSymbolLayerV2Utils import encodeColor [as 別名]
def set_hsv_value(values, feature, parent):
    """
        Sets the value of a color
        
        <p><h4>Syntax</h4>
        set_hsv_value(<i>color</i>, <i>value</i>)</p>

        <p><h4>Arguments</h4>
        <i>  color</i> &rarr; a color<br>
        <i>  value</i> &rarr; a integer between 0 and 100<br></p>
        
        <p><h4>Example</h4>
        <!-- Show example of function.-->
             set_hsv_value('0,255,0,255', 50) &rarr; '0,128,0,255'</p>
    """
    try:
        color = QgsSymbolLayerV2Utils.decodeColor(values[0])
        color.setHsvF(color.hueF(), color.saturationF(), values[1] / 100.0, color.alphaF())
        return QgsSymbolLayerV2Utils.encodeColor(color)
    except:
        return None
開發者ID:nyalldawson,項目名稱:qgsexpressionsplus,代碼行數:23,代碼來源:functions.py

示例2: set_alpha

# 需要導入模塊: from qgis.core import QgsSymbolLayerV2Utils [as 別名]
# 或者: from qgis.core.QgsSymbolLayerV2Utils import encodeColor [as 別名]
def set_alpha(values, feature, parent):
    """
        Sets the alpha component of a color
        
        <p><h4>Syntax</h4>
        set_alpha(<i>color</i>, <i>alpha</i>)</p>

        <p><h4>Arguments</h4>
        <i>  color</i> &rarr; a color<br>
        <i>  alpha</i> &rarr; an alpha value between 0 and 255<br></p>
        
        <p><h4>Example</h4>
        <!-- Show example of function.-->
             set_alpha('255,255,255,255', 125) &rarr; '255,255,255,125'</p>
    """
    try:
        color = QgsSymbolLayerV2Utils.decodeColor(values[0])
        color.setAlpha(values[1])
        return QgsSymbolLayerV2Utils.encodeColor(color)
    except:
        return None
開發者ID:nyalldawson,項目名稱:qgsexpressionsplus,代碼行數:23,代碼來源:functions.py

示例3: set_hue

# 需要導入模塊: from qgis.core import QgsSymbolLayerV2Utils [as 別名]
# 或者: from qgis.core.QgsSymbolLayerV2Utils import encodeColor [as 別名]
def set_hue(values, feature, parent):
    """
        Sets the hue component of a color
        
        <p><h4>Syntax</h4>
        set_hue(<i>color</i>, <i>hue</i>)</p>

        <p><h4>Arguments</h4>
        <i>  color</i> &rarr; a color<br>
        <i>  hue</i> &rarr; a integer between 0 and 360<br></p>
        
        <p><h4>Example</h4>
        <!-- Show example of function.-->
             set_hue('0,255,0,255', 0) &rarr; '255,0,0,255'</p>
    """
    try:
        color = QgsSymbolLayerV2Utils.decodeColor(values[0])
        color.setHslF(values[1] / 360.0, color.saturationF(), color.lightnessF(), color.alphaF())
        return QgsSymbolLayerV2Utils.encodeColor(color)
    except:
        return None
開發者ID:nyalldawson,項目名稱:qgsexpressionsplus,代碼行數:23,代碼來源:functions.py


注:本文中的qgis.core.QgsSymbolLayerV2Utils.encodeColor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。