SkipPdfImages
PdfLoadOptions.SkipPdfImages property
PDF belgesi yüklenirken görüntülerin atlanması gerekip gerekmediğini belirten bayrağı alır veya ayarlar. Varsayılan:YANLIŞ
.
public bool SkipPdfImages { get; set; }
Örnekler
PDF dosyalarını yüklerken görüntülerin nasıl atlanacağını gösterir.
PdfLoadOptions options = new PdfLoadOptions();
options.SkipPdfImages = isSkipPdfImages;
Document doc = new Document(MyDir + "Images.pdf", options);
NodeCollection shapeCollection = doc.GetChildNodes(NodeType.Shape, true);
if (isSkipPdfImages)
{
Assert.AreEqual(shapeCollection.Count, 0);
}
else
{
Assert.AreNotEqual(shapeCollection.Count, 0);
}
Ayrıca bakınız
- class PdfLoadOptions
- ad alanı Aspose.Words.Loading
- toplantı Aspose.Words