我在使图像适合我的标签时遇到了一些麻烦。 我使用selenium去网站拍照,然后我想在我的标签上显示这张照片。
它成功拍摄并显示它,但它的尺寸全部搞砸了。我希望图片保持原始尺寸,但缩小以使其适合框架。
有没有办法让它看起来正确?
int main(){
char *ccs;
char **ccs2; //a pointer to a pointer
ccs = calloc(80); //i have to use dynamic memory allocation
ccs2 = &ccs; //pass the address of the pointer to the double pointer
printf("Enter CCS: ");
set_ccs(ccs2); //pass the double pointer
free(ccs);
return 0;
}
int set_ccs(char **ccs){
int i = 0;
scanf("%s", *ccs);
char *c = *ccs; //copy to make increments
while(*c != '\0'){
c++;
i++;
}
printf("Length of sequence : %d\n", i);
printf("%s", *ccs);
return i;
}
编辑:我认为可能是Selenium没有采取全页截图。如果我手动将图片插入我的标签,它将适合。
答案 0 :(得分:1)
必须使用driver.maximize_window()