Compress
MetafileOptions.Compress property
Bunun olup olmadığını gösteren bir değer alır veya ayarlar.ICompressedOptions sıkıştırılmış.
public bool Compress { get; set; }
Mülk değeri
doğru
sıkıştırılmışsa; aksi halde,yanlış
.
Örnekler
Aşağıdaki örnek, bir emf görüntülerinin emz fromat’a nasıl dönüştürüleceğini gösterir.
[C#]
string file = "input.emf";
string baseFolder = System.IO.Path.Combine("D:", "Compressed");
string inputFile = System.IO.Path.Combine(baseFolder, file);
string outFile = inputFile + ".emz";
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(inputFile))
{
Aspose.Imaging.ImageOptions.VectorRasterizationOptions vectorRasterizationOptions = new Aspose.Imaging.ImageOptions.EmfRasterizationOptions() { PageSize = image.Size};
image.Save(outFile, new Aspose.Imaging.ImageOptions.EmfOptions() {VectorRasterizationOptions = vectorRasterizationOptions, Compress = true});
}
Aşağıdaki örnek, bir wmf görüntüsünün wmz fromat’a nasıl dönüştürüleceğini gösterir.
[C#]
string file = "castle.wmf";
string baseFolder = System.IO.Path.Combine("D:", "Compressed");
string inputFile = System.IO.Path.Combine(baseFolder, file);
string outFile = inputFile + ".wmz";
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(inputFile))
{
Aspose.Imaging.ImageOptions.VectorRasterizationOptions vectorRasterizationOptions = new Aspose.Imaging.ImageOptions.WmfRasterizationOptions() { PageSize = image.Size};
image.Save(outFile, new Aspose.Imaging.ImageOptions.WmfOptions() {VectorRasterizationOptions = vectorRasterizationOptions, Compress = true});
}
Ayrıca bakınız
- class MetafileOptions
- ad alanı Aspose.Imaging.ImageOptions
- toplantı Aspose.Imaging