vote up 4 vote down star

I need your help adding an image to a PDF

I'm using:


string imgPath2 = localPath + "\\TempChartImages\\" + LegendPath;
img2.Save(imgPath2);
ith.WriteImage(imgPath2, 80);

But this code give me error : "Use of unassigned local varible img2"

How can I solve this error?

flag

30% accept rate
I'm not sure what your code does (as its not very clear) but are you trying to add an image to a PDF? If so, use iTextSharp. – David Liddle Jun 18 at 13:54
Can you post the code that defines img2? You will need a library to do the insert in the PDF as there is nothing backed into the .NET framework to manipulate PDFs. – Kelsey Jun 18 at 22:49

4 Answers

vote up 2 vote down

Here is the iTextSharp tutorial on images. Without seeing more of your code, it's tough to judge what piece of code from this you'll need.

link|flag
vote up 1 vote down

You'll need some third-party tool for this.

link|flag
Yes i have i used itextSharp.... – ykaratoprak Jun 18 at 13:53
It would be worth editing your question to include that information - probably even in the question header. – Jeffrey Jun 18 at 13:56
vote up 1 vote down

When you declare a variable, in your case img2, without assigning a value it is pointing to absolutely nothing. Make sure you initialize img2 to something before using it.

I think what you want your img2.Save line to be changed to:

Image img2 = Image.FromFile(yourInitialImageHere);  // You could be reading from memory as well.
img2.Save(imgPath2);

I could be way off though as your snippet of code is pretty vague.

link|flag
vote up 1 vote down

it's a hunch, but if you're assigning the value of img2 inside a Try-Catch block you might be hitting an exception that prevents the assignment from taking place. For example:

var img2;
try
{
    var x = 5 / 0; // Generate a DivideByZero exception
    img2 = GetImage(); // <-- the above exception will prevent this code from executing
}
catch
{
}
img2.Save(imgPath2); <-- img2 wasn't assigned, so another exception will occur
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.