110 lines
3.9 KiB
Python
Raw Normal View History

2012-10-04 19:33:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
pct2rgb.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Email : volayaf at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Victor Olaya'
__date__ = 'August 2012'
__copyright__ = '(C) 2012, Victor Olaya'
import os
2016-04-22 10:38:48 +02:00
from qgis.PyQt.QtGui import QIcon
from qgis.core import (QgsRasterFileWriter,
QgsProcessingException,
QgsProcessingParameterRasterLayer,
2017-08-31 12:10:45 +03:00
QgsProcessingParameterBand,
QgsProcessingParameterBoolean,
QgsProcessingParameterRasterDestination)
from processing.algs.gdal.GdalAlgorithm import GdalAlgorithm
from processing.tools.system import isWindows
from processing.algs.gdal.GdalUtils import GdalUtils
2012-09-15 18:25:25 +03:00
2017-08-31 12:10:45 +03:00
pluginPath = os.path.split(os.path.split(os.path.dirname(__file__))[0])[0]
class pct2rgb(GdalAlgorithm):
2012-09-15 18:25:25 +03:00
INPUT = 'INPUT'
2017-08-31 12:10:45 +03:00
BAND = 'BAND'
RGBA = 'RGBA'
OUTPUT = 'OUTPUT'
def __init__(self):
super().__init__()
2017-06-27 17:20:57 +10:00
def initAlgorithm(self, config=None):
2017-08-31 12:10:45 +03:00
self.addParameter(QgsProcessingParameterRasterLayer(self.INPUT, self.tr('Input layer')))
self.addParameter(QgsProcessingParameterBand(self.BAND,
self.tr('Band number'),
1,
parentLayerParameterName=self.INPUT))
self.addParameter(QgsProcessingParameterBoolean(self.RGBA,
self.tr('Generate a RGBA file'),
defaultValue=False))
2017-08-31 12:10:45 +03:00
self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT, self.tr('PCT to RGB')))
2012-09-15 18:25:25 +03:00
def name(self):
return 'pcttorgb'
def displayName(self):
return self.tr('PCT to RGB')
def group(self):
return self.tr('Raster conversion')
def groupId(self):
return 'rasterconversion'
2017-08-31 12:10:45 +03:00
def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'gdaltools', '8-to-24-bits.png'))
def commandName(self):
return 'pct2rgb'
def getConsoleCommands(self, parameters, context, feedback, executing=True):
arguments = []
2017-08-31 12:10:45 +03:00
inLayer = self.parameterAsRasterLayer(parameters, self.INPUT, context)
if inLayer is None:
raise QgsProcessingException(self.invalidRasterError(parameters, self.INPUT))
2017-08-31 12:10:45 +03:00
arguments.append(inLayer.source())
out = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
self.setOutputValue(self.OUTPUT, out)
2017-08-31 12:10:45 +03:00
arguments.append(out)
arguments.append('-of')
arguments.append(QgsRasterFileWriter.driverForExtension(os.path.splitext(out)[1]))
2017-08-31 12:10:45 +03:00
arguments.append('-b')
arguments.append(str(self.parameterAsInt(parameters, self.BAND, context)))
if self.parameterAsBoolean(parameters, self.RGBA, context):
2017-08-31 12:10:45 +03:00
arguments.append('-rgba')
if isWindows():
commands = ["python3", "-m", self.commandName()]
else:
commands = [self.commandName() + '.py']
commands.append(GdalUtils.escapeAndJoin(arguments))
2012-09-15 18:25:25 +03:00
return commands