Hello,
Iam using itextsharp 4.0.2.0 and vc++.net 2003.
Could you please tell me how to create an array of image objects in Itextsharp
I tried this
iTextSharp::text::Image *in[]=new iTextSharp::text::Image[50];
for (int i=0;iin[i]= iTextSharp::text::Image::GetInstance(imgfilename[i]);//imgfilename[i])- path of image
in[i]->ScalePercent(95);
}
but it does not work.
Thanks in advance for your time.