Hi all,
Pb :
When adding pictures to my presentation, it seems that the PictureId auto-generated by the api is always the same, so not ‘Unique’ as stated in the documentation.
Presentation pres = new Presentation(path); Picture pic = new Picture(pres,“1.jpg”); Picture pic2 = new Picture(pres,“2.jpg”); Picture pic3 = new Picture(pres,“3.jpg”); pres.Pictures.Add(pic); pres.Pictures.Add(pic2); pres.Pictures.Add(pic3); // Launching DEBUG … |
My source Powerpoint file has already 2 Pictures in it (with PictureIds 2 & 3) …
The 3 newly added pics have all the same PictureId (2), which correspond to one existing Picture.
Am I doing something wrong ??
Thanks a lot
Stephane