Bonjour,

Je crée un tableau contenant plusieurs cellules.
Dans une cellule, j'insère une image.
J'aimerai connaitre la taille de la cellule (width et height) pour ajuster mon image à la taille de la cellule.
J'ai essayé un simple getWidth() et getHeight() àdifférent endroit de création de mon tableau(voir même à la fin de la création de mon tableau)... mais je récupére toujours 0

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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
 
	private void createTable(List<DrawingEquipment>  listOfEquipmentModified){
		try {
 
			//Le tableau
			table = new Table(11);//tableau de 11 colonnes
			table.setBorderWidth(1);//bordure du tableau
            table.setPadding(1.1f);//espace entre le bord des cellules et les composants
            table.setSpacing(0);//espace entre cellule
            table.setWidth(100);//largeur total
            float[] widths = {0.5f,0.14f,0.14f,0.04f,0.06f,0.015f,0.015f,0.015f,0.015f,0.015f,0.045f};
			table.setWidths(widths);// largeur par cellule
 
 
            //la partie de gauche contenant l'image
            //Cell cellImage = new Cell(getImage());
			cell= new Cell(getImage());
			//cell.add(getImage());
            cell.add(getImage());
            cell.setRowspan(35);
            //cellImage.setWidth(50);
            table.addCell(cell);
 
            // 1ere ligne partie de droite
            font = FontFactory.getFont(FontFactory.HELVETICA, 10, Font.BOLD, Color.BLUE);
			Paragraph para = new Paragraph("FICHE DE MANOEUVRES \n",font);	
			font = FontFactory.getFont(FontFactory.HELVETICA, 7,Font.NORMAL,Color.BLUE);
			para.add(new Phrase("Passage de l'état n°  à l'état n° \n",font));
            cell = new Cell(para);
            cell.setColspan(4);
            cell.setHorizontalAlignment(Element.ALIGN_CENTER);
            table.addCell(cell);
 
			Paragraph para1 = new Paragraph(new Chunk("Etat n° \n",font));
			para1.add(new Phrase("\n"));			
            cell = new Cell(para1);
            cell.setColspan(5);
            cell.setHorizontalAlignment(Element.ALIGN_CENTER);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setColspan(1);
            table.addCell(cell);
 
            //2sd ligne partie de droite
			Paragraph para2 = new Paragraph(new Chunk("  Ouvrages concernés\n",font));
			para2.add(new Phrase("\n"));
			para2.add(new Phrase("\n"));
			cell = new Cell(para2);
            cell.setColspan(4);
            cell.setHorizontalAlignment(Element.ALIGN_LEFT);
            table.addCell(cell);
 
			Paragraph para3 = new Paragraph(new Chunk("Annexe à la formule n° \n",font));
			para3.add(new Phrase("\n"));
            cell = new Cell(para3);           
            cell.setColspan(5);
            cell.setHorizontalAlignment(Element.ALIGN_CENTER);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setColspan(1);
            table.addCell(cell);
 
            //3eme ligne partie de droite
			Paragraph para4 = new Paragraph("  Pendant l'état n°  le(les) ouvrages suivant(s): \n",font);
			para4.add(new Phrase("\n",font));
			para4.add(new Phrase("  reste(nt) en 1er étape ou  consigné(s) \n",font));
			cell = new Cell(para4);
            cell.setColspan(4);
            cell.setHorizontalAlignment(Element.ALIGN_LEFT);
            table.addCell(cell);
 
			Paragraph para5 = new Paragraph(new Chunk("Clé n° \n",font));
			para5.add(new Phrase("\n"));
            cell = new Cell(para5);
            cell.setColspan(5);
            cell.setHorizontalAlignment(Element.ALIGN_CENTER);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setColspan(1);
            table.addCell(cell);
 
            //4eme ligne partie de droite
            Phrase phrase =new Phrase(" Préparateur :",font);
            cell = new Cell(phrase);
            cell.setHorizontalAlignment(Element.ALIGN_LEFT);
            table.addCell(cell);
 
            cell = new Cell(new Phrase(" Valideur :",font));
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setColspan(2);
            cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
            table.addCell(cell);
 
            font = FontFactory.getFont(FontFactory.HELVETICA, 7,Font.NORMAL,Color.BLUE);
            cell = new Cell(new Phrase("Date & pointage",font));
            cell.setColspan(5);
            cell.setHorizontalAlignment(Element.ALIGN_CENTER);
            table.addCell(cell);
 
            font = FontFactory.getFont(FontFactory.HELVETICA, 7,Font.NORMAL,Color.BLUE);
            cell = new Cell("");
            cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
            cell.setHorizontalAlignment(Element.ALIGN_LEFT);
            table.addCell(cell);
 
            //5eme ligne partie de droite
            cell = new Cell(new Phrase(" Date :",font));
            table.addCell(cell);
 
            cell = new Cell(new Phrase(" Date :",font));
            table.addCell(cell);
 
            cell = new Cell(new Phrase(" N° Repére",font));
            cell.setRowspan(2);
            table.addCell(cell);
 
            cell = new Cell(new Phrase(" Opération",font));
            cell.setRowspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setRowspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setRowspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setRowspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setRowspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
            cell.setRowspan(2);
            table.addCell(cell);            
 
            cell = new Cell(new Phrase("Nbr cadenas",font));
            cell.setRowspan(2);
            table.addCell(cell);
 
            //6eme ligne partie de droite
            cell = new Cell(new Phrase(" Visa :",font));
            table.addCell(cell);
 
            cell = new Cell(new Phrase(" Visa :",font));
            table.addCell(cell);
 
 
            getDrawingEquipmentTable(listOfEquipmentModified);
 
            font = FontFactory.getFont(FontFactory.HELVETICA, 7,Font.NORMAL,Color.BLUE);
            //33eme ligne partie de droite
            cell = new Cell(new Phrase("  Total de cadenas posés :",font));
        	cell.setColspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
        	cell.setColspan(7);
        	cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
            table.addCell(cell);
 
            cell = new Cell("");
            table.addCell(cell);
 
            //34eme ligne partie de droite
            cell = new Cell(new Phrase("  Total de cadenas déposés :",font));
        	cell.setColspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
        	cell.setColspan(7);
        	cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
            table.addCell(cell);
 
            cell = new Cell("");
            table.addCell(cell);
 
            //35eme ligne partie de droite
            cell = new Cell(new Phrase("  Serie de cadenas de couleur :",font));
        	cell.setColspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
        	cell.setColspan(7);
        	cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
            table.addCell(cell);
 
            cell = new Cell("");
            table.addCell(cell);
 
            //35eme ligne partie de droite
            cell = new Cell(new Phrase("  Reste sur porte cadenas :",font));
        	cell.setColspan(2);
            table.addCell(cell);
 
            cell = new Cell("");
        	cell.setColspan(7);
        	cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
            table.addCell(cell);
 
            cell = new Cell("");
            table.addCell(cell);
 
            //36eme ligne partie de droite
			Paragraph para6 = new Paragraph(new Chunk("  Chargé de Consignation \n",font));
			para6.add(new Phrase("\n",font));
            cell = new Cell(para6);
        	cell.setColspan(10);
            table.addCell(cell);
 
 
		} catch (BadElementException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
 
	private Table getDrawingEquipmentTable(List<DrawingEquipment>  listOfEquipmentModified){
 
        	try {
        		font = FontFactory.getFont(FontFactory.HELVETICA, 7,Font.NORMAL,Color.BLACK);
        		int EmptyRow=maxRow-listOfEquipmentModified.size();
        		//boucle pour remplir le tableau avec les équipements
        		for (DrawingEquipment equipment : listOfEquipmentModified) {				
        			//si le nombre d'équipement est inférieur ou égal
        			//au nombre maxi admisible par le model
        			if(listOfEquipmentModified.size()<=this.maxRow){
                			cell = new Cell(new Phrase("  "+equipment.getStation()+" "+equipment.getName()+" départ "+equipment.getDeparture(),font));
                			cell.setColspan(2);
                			table.addCell(cell);
 
                			cell = new Cell(new Phrase("  "+equipment.getNumber(),font));
                			table.addCell(cell);
 
                			cell = new Cell(new Phrase("  "+equipment.getAction(),font));
                			table.addCell(cell);
 
                			cell = new Cell("");
                			table.addCell(cell);
                			cell = new Cell("");
                			table.addCell(cell);
                			cell = new Cell("");
                			table.addCell(cell);
                			cell = new Cell("");
                			table.addCell(cell);
                			cell = new Cell("");
                			table.addCell(cell);
 
                			cell = new Cell("");
                			table.addCell(cell);     				
        			}
        			else{
        				System.out.println("PdfController : Trop de ligne ");
        			}
                }
 
        		//boucle pour remplir les lignes vides
        		for(int i=0;i<EmptyRow;i++){
        			cell = new Cell(new Phrase("\n",font));
        			cell.setColspan(2);
        			table.addCell(cell);
 
        			cell = new Cell("");
        			table.addCell(cell);
 
        			cell = new Cell("");
        			table.addCell(cell);
 
        			cell = new Cell("");
        			table.addCell(cell);
        			cell = new Cell("");
        			table.addCell(cell);
        			cell = new Cell("");
        			table.addCell(cell);
        			cell = new Cell("");
        			table.addCell(cell);
        			cell = new Cell("");
        			table.addCell(cell);
 
        			cell = new Cell("");
        			table.addCell(cell);
        		}
			} catch (BadElementException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}              
		return table;
	}
merci pour votre aide