diff options
author | UbitUmarov | 2018-05-04 16:59:11 +0100 |
---|---|---|
committer | UbitUmarov | 2018-05-04 16:59:11 +0100 |
commit | 7838689dda4593b57f4afae2a1cf92b60b31e9fb (patch) | |
tree | d79427465f718824eb96dacc7e95c51f8739f181 /OpenSim/Region/CoreModules | |
parent | change region console comand export-map: make it work with var regions, cente... (diff) | |
download | opensim-SC-7838689dda4593b57f4afae2a1cf92b60b31e9fb.zip opensim-SC-7838689dda4593b57f4afae2a1cf92b60b31e9fb.tar.gz opensim-SC-7838689dda4593b57f4afae2a1cf92b60b31e9fb.tar.bz2 opensim-SC-7838689dda4593b57f4afae2a1cf92b60b31e9fb.tar.xz |
why where map and dynamic textures compressed lossless?
Diffstat (limited to 'OpenSim/Region/CoreModules')
4 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs index a012093..475e8e9 100644 --- a/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/VectorRender/VectorRenderModule.cs | |||
@@ -389,7 +389,7 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
389 | 389 | ||
390 | try | 390 | try |
391 | { | 391 | { |
392 | imageJ2000 = OpenJPEG.EncodeFromImage(bitmap, true); | 392 | imageJ2000 = OpenJPEG.EncodeFromImage(bitmap, false); |
393 | } | 393 | } |
394 | catch (Exception e) | 394 | catch (Exception e) |
395 | { | 395 | { |
@@ -685,7 +685,7 @@ namespace OpenSim.Region.CoreModules.Scripting.VectorRender | |||
685 | case "S": | 685 | case "S": |
686 | myFontStyle |= FontStyle.Strikeout; | 686 | myFontStyle |= FontStyle.Strikeout; |
687 | break; | 687 | break; |
688 | case "R": //This special case resets all font properties | 688 | case "R": //This special case resets all font properties |
689 | myFontStyle = FontStyle.Regular; | 689 | myFontStyle = FontStyle.Regular; |
690 | break; | 690 | break; |
691 | } | 691 | } |
diff --git a/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs b/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs index b927cfa..ce82c26 100644 --- a/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs +++ b/OpenSim/Region/CoreModules/World/LegacyMap/MapImageModule.cs | |||
@@ -153,7 +153,7 @@ namespace OpenSim.Region.CoreModules.World.LegacyMap | |||
153 | using (Bitmap mapbmp = CreateMapTile()) | 153 | using (Bitmap mapbmp = CreateMapTile()) |
154 | { | 154 | { |
155 | if (mapbmp != null) | 155 | if (mapbmp != null) |
156 | return OpenJPEG.EncodeFromImage(mapbmp, true); | 156 | return OpenJPEG.EncodeFromImage(mapbmp, false); |
157 | } | 157 | } |
158 | } | 158 | } |
159 | catch (Exception e) // LEGIT: Catching problems caused by OpenJPEG p/invoke | 159 | catch (Exception e) // LEGIT: Catching problems caused by OpenJPEG p/invoke |
diff --git a/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs b/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs index 4934ebd..6d68c61 100644 --- a/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs +++ b/OpenSim/Region/CoreModules/World/Warp3DMap/Warp3DImageModule.cs | |||
@@ -251,7 +251,7 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap | |||
251 | try | 251 | try |
252 | { | 252 | { |
253 | using (Bitmap mapbmp = CreateMapTile()) | 253 | using (Bitmap mapbmp = CreateMapTile()) |
254 | return OpenJPEG.EncodeFromImage(mapbmp, true); | 254 | return OpenJPEG.EncodeFromImage(mapbmp, false); |
255 | } | 255 | } |
256 | catch (Exception e) | 256 | catch (Exception e) |
257 | { | 257 | { |
diff --git a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs index 64eda2f..12ac436 100644 --- a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs +++ b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs | |||
@@ -1673,13 +1673,13 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
1673 | newsize.Height = (int)(by * scale); | 1673 | newsize.Height = (int)(by * scale); |
1674 | 1674 | ||
1675 | using(Bitmap scaledbmp = new Bitmap(mapbmp,newsize)) | 1675 | using(Bitmap scaledbmp = new Bitmap(mapbmp,newsize)) |
1676 | data = OpenJPEG.EncodeFromImage(scaledbmp, true); | 1676 | data = OpenJPEG.EncodeFromImage(scaledbmp, false); |
1677 | } | 1677 | } |
1678 | else | 1678 | else |
1679 | data = OpenJPEG.EncodeFromImage(mapbmp, true); | 1679 | data = OpenJPEG.EncodeFromImage(mapbmp, false); |
1680 | } | 1680 | } |
1681 | else | 1681 | else |
1682 | data = OpenJPEG.EncodeFromImage(mapbmp, true); | 1682 | data = OpenJPEG.EncodeFromImage(mapbmp, false); |
1683 | 1683 | ||
1684 | if (data != null && data.Length > 0) | 1684 | if (data != null && data.Length > 0) |
1685 | { | 1685 | { |
@@ -1857,7 +1857,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
1857 | 1857 | ||
1858 | try | 1858 | try |
1859 | { | 1859 | { |
1860 | return OpenJPEG.EncodeFromImage(overlay, true); | 1860 | return OpenJPEG.EncodeFromImage(overlay, false); |
1861 | } | 1861 | } |
1862 | catch (Exception e) | 1862 | catch (Exception e) |
1863 | { | 1863 | { |