我设法让脚本运行,脚本会自动将PDF转换为Google Doc格式。我们似乎遇到的问题是PDF中也有图像。当我们将PDF转换为Google Doc时,Google Doc没有图像,只有文本。我相信发生这种情况的原因是由于OCR。我是否有可能自动化脚本以将PDF上的图像转换为Google Docs?
以下是有问题的剧本:
void IMyRepository.Repository(Registration registration)
{
registration.RegistrationNumber = Guid.NewGuid().ToString();
dbContext.SaveChanges();
}
答案 0 :(得分:1)