ResizeVertically
Contenu
[
Cacher
]FieldIncludePicture.ResizeVertically property
Obtient ou définit s’il faut redimensionner l’image verticalement à partir de la source.
public bool ResizeVertically { get; set; }
Exemples
Montre comment insérer des images à l’aide des champs IMPORT et INCLUDEPICTURE.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Vous trouverez ci-dessous deux types de champs similaires que nous pouvons utiliser pour afficher des images liées depuis le système de fichiers local.
// 1 - Le champ INCLUDEPICTURE :
FieldIncludePicture fieldIncludePicture = (FieldIncludePicture)builder.InsertField(FieldType.FieldIncludePicture, true);
fieldIncludePicture.SourceFullName = ImageDir + "Transparent background logo.png";
Assert.True(Regex.Match(fieldIncludePicture.GetFieldCode(), " INCLUDEPICTURE .*").Success);
// Applique le filtre PNG32.FLT.
fieldIncludePicture.GraphicFilter = "PNG32";
fieldIncludePicture.IsLinked = true;
fieldIncludePicture.ResizeHorizontally = true;
fieldIncludePicture.ResizeVertically = true;
// 2 - Le champ IMPORT :
FieldImport fieldImport = (FieldImport)builder.InsertField(FieldType.FieldImport, true);
fieldImport.SourceFullName = ImageDir + "Transparent background logo.png";
fieldImport.GraphicFilter = "PNG32";
fieldImport.IsLinked = true;
Assert.True(Regex.Match(fieldImport.GetFieldCode(), " IMPORT .* \\\\c PNG32 \\\\d").Success);
doc.UpdateFields();
doc.Save(ArtifactsDir + "Field.IMPORT.INCLUDEPICTURE.docx");
Voir également
- class FieldIncludePicture
- espace de noms Aspose.Words.Fields
- Assemblée Aspose.Words