I have been building my app on a Mac and until today have only built the solution for use on a Mac. Today I tried building my App for windows and was very impressed with the performance.
I have however discovered an issue and I can't work out why it is happening, does anybody have any extra info on this....
I have a step which imports a large picture, reduces the size of the picture and then takes a screenshot of the reduced size picture (to allow me to store it and take up less space in my database).
On Mac I use the step:
Code: Select all
export snapshot from image g_name_holder_image to image g_name_holder_image as gif
which works fine...
when I use this step on Windows it saves the picture with blurred lines across it (please see attached pic for example).
if I change the step to save snapshot as jpeg on windows then again this works fine
Code: Select all
export snapshot from image g_name_holder_image to image g_name_holder_image as jpeg
why would this not be working correctly with 'gif'?
Many Thanks