Fixed PDF preview showing same image for different files

master
mananapr 5 years ago
parent 7503bed8d0
commit 287f269a62

@ -977,13 +977,13 @@ void getImgPreview(char *filepath, int maxy, int maxx)
*/ */
void getPDFPreview(char *filepath, int maxy, int maxx) void getPDFPreview(char *filepath, int maxy, int maxx)
{ {
char imgout[] = "/tmp/prev-001.jpg"; char imgout[] = "/tmp/prev.jpg";
pid_t pid; pid_t pid;
pid = fork(); pid = fork();
if(pid == 0) if(pid == 0)
{ {
execlp("pdftoppm","pdftoppm","-l","1","-jpeg",filepath,"/tmp/prev", (char *)NULL); execlp("pdftoppm","pdftoppm","-l","1","-jpeg",filepath,"-singlefile", "/tmp/prev", (char *)NULL);
exit(1); exit(1);
} }
else else

Loading…
Cancel
Save