i have a an image in a picturebox
and i want to print it as simple as that. no format, no nothing, just print it.
I've been searching on google but I've got nothing, guys print forms or text or reports.
private string imgSrc;
public string ImgSrc
{
get { return imgSrc; }
set { imgSrc = value; }
}
public Id_Manager()
{
ImgSrc = "D:\\Foto.jpg";
InitializeComponent();
idPicture.Load(this.ImgSrc);
}
obviously the image is going to change but for now I'm just interesting in printing that image, i save the url in a property just in case, can u guys gimme an idea
