BufferSizeHint
ImageOptionsBase.BufferSizeHint property
Hämtar eller ställer in buffertstorlekstipset som är definierat som högsta tillåtna storlek för alla interna buffertar.
public int BufferSizeHint { get; set; }
Fastighetsvärde
Tipset om buffertstorlek, i megabyte. Icke-positivt värde betyder ingen minnesbegränsning för interna buffertar
Exempel
Följande exempel visar hur du ställer in en minnesgräns när du skapar en ny JPEG-bild. Minnesgränsen är den högsta tillåtna storleken (i megabyte) för alla interna buffertar.
[C#]
string dir = "c:\\aspose.imaging\\issues\\net\\3404\\";
// Ställa in en minnesgräns på 50 megabyte för målskapad bild
Aspose.Imaging.ImageOptionsBase createOptions = new Aspose.Imaging.ImageOptions.JpegOptions
{
CompressionType = Aspose.Imaging.FileFormats.Jpeg.JpegCompressionMode.Progressive,
BufferSizeHint = 50,
Source = new Aspose.Imaging.Sources.FileCreateSource(dir + "createdFile.jpg", false),
};
using (var image = Aspose.Imaging.Image.Create(createOptions, 1000, 1000))
{
image.Save(); // spara på samma plats
}
Följande exempel visar hur man ställer in en minnesgräns när man skapar en PNG-bild och ritar komplex grafik på den. Minnesgränsen är den högsta tillåtna storleken (i megabyte) för alla interna buffertar.
[C#]
string dir = "c:\\aspose.imaging\\issues\\net\\3383\\";
const int ImageSize = 2000;
Aspose.Imaging.ImageOptionsBase createOptions = new Aspose.Imaging.ImageOptions.PngOptions();
createOptions.Source = new Aspose.Imaging.Sources.FileCreateSource(dir + "graphics_simple.png", false);
createOptions.BufferSizeHint = 30; // Minnesgränsen är 30 Mb
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Create(createOptions, ImageSize, ImageSize))
{
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(image);
// Du kan använda alla grafiska operationer här, alla kommer att utföras inom den fastställda minnesgränsen
// Till exempel:
graphics.Clear(Aspose.Imaging.Color.LightSkyBlue);
graphics.DrawLine(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Red, 3f), 0, 0, image.Width, image.Height);
image.Save();
}
// Ett stort antal grafiska operationer stöds också:
const int OperationAreaSize = 10;
createOptions = new Aspose.Imaging.ImageOptions.PngOptions();
createOptions.Source = new Aspose.Imaging.Sources.FileCreateSource(dir + "graphics_complex.png", false);
createOptions.BufferSizeHint = 30; // Minnesgränsen är 30 Mb
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Create(createOptions, ImageSize, ImageSize))
{
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(image);
graphics.BeginUpdate();
graphics.Clear(Aspose.Imaging.Color.LightSkyBlue);
int x, y;
int numberOfOperations = 0;
for (int column = 0; column * OperationAreaSize < ImageSize; column++)
{
for (int row = 0; row * OperationAreaSize < ImageSize; row++)
{
x = column * OperationAreaSize;
y = row * OperationAreaSize;
bool reversed = (column + row) % 2 != 0;
if (reversed)
{
graphics.DrawLine(
new Aspose.Imaging.Pen(Aspose.Imaging.Color.Red),
x + OperationAreaSize - 2,
y,
x,
y + OperationAreaSize);
}
else
{
graphics.DrawLine(
new Aspose.Imaging.Pen(Aspose.Imaging.Color.Red),
x,
y,
x + OperationAreaSize - 2,
y + OperationAreaSize);
}
numberOfOperations++;
}
}
// Cirka 40 000 operationer kommer att tillämpas här, medan de inte tar upp för mycket minne
// eftersom de redan är urladdade i den externa filen, och kommer att laddas därifrån en i taget
graphics.EndUpdate();
image.Save();
}
Se även
- class ImageOptionsBase
- namnutrymme Aspose.Imaging
- hopsättning Aspose.Imaging