We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent d78e05c commit bcbf9ddCopy full SHA for bcbf9dd
src/providers/wms/qgswmsprovider.cpp
@@ -2597,7 +2597,8 @@ QVector<QgsWmsSupportedFormat> QgsWmsProvider::supportedFormats()
2597
if ( supportedFormats.contains( "png" ) && supportedFormats.contains( "jpg" ) )
2598
{
2599
QgsWmsSupportedFormat g1 = { "image/x-jpegorpng", "JPEG/PNG" }; // used by cubewerx
2600
- formats << g1;
+ QgsWmsSupportedFormat g2 = { "image/jpgpng", "JPEG/PNG" }; // used by ESRI
2601
+ formats << g1 << g2;
2602
}
2603
2604
if ( supportedFormats.contains( "gif" ) )
Thanks!
1 commit comments
palmerj commentedon Feb 26, 2014
Thanks!