I have a winforms app that loads some images and text and saves the compilation as a jpeg.
This all works on my pc, but I need this to run on my web server. When I run it on the server while logged in to remote desktop, it works great, if I run it while not connected, it creates solid black images. In my winforms app, I am loading my content into a panel and then using the drawtoImage function of the panel to export the image.
Any ideas on how I could get this to work server side?
I have a winforms app that loads some images and text and saves the
Share
OK, the method of creating the control in memory and then using drawtobitmap works great for me, thanks for your input