diff --git a/OpenSim/Region/Environment/Modules/LoadImageURLModule.cs b/OpenSim/Region/Environment/Modules/LoadImageURLModule.cs index 787e6f1841..dc894e4af3 100644 --- a/OpenSim/Region/Environment/Modules/LoadImageURLModule.cs +++ b/OpenSim/Region/Environment/Modules/LoadImageURLModule.cs @@ -126,7 +126,7 @@ namespace OpenSim.Region.Environment.Modules if (response.StatusCode == HttpStatusCode.OK) { Bitmap image = new Bitmap(response.GetResponseStream()); - Bitmap resize = new Bitmap(image, new Size(512, 512)); + Bitmap resize = new Bitmap(image, new Size(1024, 1024)); byte[] imageJ2000 = OpenJPEG.EncodeFromImage(resize, true); m_textureManager.ReturnData(state.RequestID, imageJ2000); @@ -146,4 +146,4 @@ namespace OpenSim.Region.Environment.Modules } } } -} \ No newline at end of file +}