mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-15 00:07:25 -05:00
new icons for RGB to PCT and PCT to RGB tools from Robert
This commit is contained in:
parent
21fa9cd3c1
commit
94fb18be98
@ -140,11 +140,11 @@ class GdalTools:
|
||||
self.translate.setStatusTip( QCoreApplication.translate( "GdalTools", "Converts raster data between different formats") )
|
||||
QObject.connect( self.translate, SIGNAL( "triggered()" ), self.doTranslate )
|
||||
|
||||
self.paletted = QAction( QIcon( ":icons/raster-paletted.png" ), QCoreApplication.translate( "GdalTools", "RGB to PCT" ), self.iface.mainWindow() )
|
||||
self.paletted = QAction( QIcon( ":icons/24-to-8-bits.png" ), QCoreApplication.translate( "GdalTools", "RGB to PCT" ), self.iface.mainWindow() )
|
||||
self.paletted.setStatusTip( QCoreApplication.translate( "GdalTools", "Convert a 24bit RGB image to 8bit paletted" ) )
|
||||
QObject.connect( self.paletted, SIGNAL( "triggered()" ), self.doPaletted )
|
||||
|
||||
self.rgb = QAction( QIcon( ":icons/raster-paletted.png" ), QCoreApplication.translate( "GdalTools", "PCT to RGB" ), self.iface.mainWindow() )
|
||||
self.rgb = QAction( QIcon( ":icons/8-to-24-bits.png" ), QCoreApplication.translate( "GdalTools", "PCT to RGB" ), self.iface.mainWindow() )
|
||||
self.rgb.setStatusTip( QCoreApplication.translate( "GdalTools", "Convert an 8bit paletted image to 24bit RGB" ) )
|
||||
QObject.connect( self.rgb, SIGNAL( "triggered()" ), self.doRGB )
|
||||
|
||||
|
||||
BIN
python/plugins/GdalTools/icons/24-to-8-bits.png
Normal file
BIN
python/plugins/GdalTools/icons/24-to-8-bits.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 766 B |
BIN
python/plugins/GdalTools/icons/8-to-24-bits.png
Normal file
BIN
python/plugins/GdalTools/icons/8-to-24-bits.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 775 B |
Binary file not shown.
|
Before Width: | Height: | Size: 1.5 KiB |
@ -15,13 +15,14 @@
|
||||
<file>icons/projection-add.png</file>
|
||||
<file>icons/raster-overview.png</file>
|
||||
<file>icons/raster-clip.png</file>
|
||||
<file>icons/raster-paletted.png</file>
|
||||
<file>icons/raster-rgb.png</file>
|
||||
<file>icons/tileindex.png</file>
|
||||
<file>icons/about.png</file>
|
||||
<file>icons/dem.png</file>
|
||||
<file>icons/projection-export.png</file>
|
||||
<file>icons/fillnodata.png</file>
|
||||
<file>icons/24-to-8-bits.png</file>
|
||||
<file>icons/8-to-24-bits.png</file>
|
||||
<file>icons/edit.png</file>
|
||||
<file>icons/reset.png</file>
|
||||
<file>icons/tooltip.png</file>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user