I can add the jpgs from the samples and the png files, even generated from me png files :-) , but INFO: I can not add the generated from me jpg attached. It is saved from VTK, probably some options like compression or so are different. It seems the code has some problem to get its size, I get size 0 and 0 at the corresponding line. VS2017, 64 bit, win8.1
Hi, I tried to compile the latest version under Win81 with 64 bit VS2017. Get problem with missing include <unistd.h> in PathManager.cpp currently solved so: moved #include <unistd.h> into the #else section of ifdef _win32 and added include <direct.h> include <stdlib.h> include <stdio.h> so finally: ifdef _WIN32 include <windows.h> include <direct.h> include <stdlib.h> include <stdio.h> else include <unistd.h> include <sys stat.h=""> include <sys types.h=""> include <sys syscall.h=""> endif and set...
Hi, I tried to compile the latest version under Win81 with 64 bit VS2017. Get problem with missing include <unistd.h> in PathManager.cpp currently solved so: moved #include <unistd.h> into the #else section of ifdef _win32 and added include <direct.h> include <stdlib.h> include <stdio.h> so finally: ifdef _WIN32 include <windows.h> include <direct.h> include <stdlib.h> include <stdio.h> else include <unistd.h> include <sys stat.h=""> include <sys types.h=""> include <sys syscall.h=""> endif and set...