I asked for the paths to both the HTML file
and the images, so since you only gave the path to the images I'm going to have to assume that the HTML is normally in the "test" folder.
If that's actually the path to your images, and your HTML file goes in "C:/Users/Home Computer/Desktop/test/", then you didn't change the path correctly. This line:
Code:
setup.Path = "C:/User/Home/Desktop/";
needs to be changed to this:
Code:
setup.Path = "C:/Users/Home Computer/Desktop/test/";
But since you seem unsure of the path, you should go to one of the images, right-click on it, go to "Properties", and take a look at the path on the "Location" line to make sure that it's the same path as in your code (also, change all of the backslashes "\" to forward slashes "/").