Bonjour à tous,
Je cherche désespérément à insérer une image d'une taille donnée à un emplacement précis dans une feuille précise dans libreoffice. Avec la fonction enregistrer une macro, j'ai le code suivant :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
sub resize
rem ----------------------------------------------------------------------
rem define variables
dim document   as object
dim dispatcher as object
rem ----------------------------------------------------------------------
rem get access to the document
document   = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
 
rem ----------------------------------------------------------------------
dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = "ToPoint"
args1(0).Value = "$B$25:$C$26"
 
dispatcher.executeDispatch(document, ".uno:GoToCell", "", 0, args1())
 
rem ----------------------------------------------------------------------
dim args2(0) as new com.sun.star.beans.PropertyValue
args2(0).Name = "ToPoint"
args2(0).Value = "$H$30"
 
dispatcher.executeDispatch(document, ".uno:GoToCell", "", 0, args2())
 
rem ----------------------------------------------------------------------
dim args3(0) as new com.sun.star.beans.PropertyValue
args3(0).Name = "ToPoint"
args3(0).Value = "$B$25"
 
dispatcher.executeDispatch(document, ".uno:GoToCell", "", 0, args3())
 
rem ----------------------------------------------------------------------
dim args4(2) as new com.sun.star.beans.PropertyValue
args4(0).Name = "FileName"
args4(0).Value = "file:///home/tseppy/1.jpg"
args4(1).Name = "FilterName"
args4(1).Value = "JPEG - Joint Photographic Experts Group"
args4(2).Name = "AsLink"
args4(2).Value = false
 
dispatcher.executeDispatch(document, ".uno:InsertGraphic", "", 0, args4())
End sub
Le problème est que l'image n'est pas de la bonne taille. Est-ce qu'il y a pas un moyen pour fixer la taille de l'image en l'insérant. Merci d'avance.