你好 Python Azure 大师,
我想创建一个本地 Azure Python 函数,它从文件中读取 pdf 数据并将其转换为“jpeg”,因此我使用imagemagick和 imagemagick 的 python 活页夹。首先,我创建了 python 函数,它在没有“本地 Azure Python 函数”的情况下成功本地运行。然后我将代码重构为本地 Azure Python 函数”运行它并收到以下消息。
unable to open image 'data/Stephan.pdf': No such file or directory @ error/blob.c/OpenBlob/3537
在 Python 函数的代码下方:
def convertToJPEG(pdf_url):
try:
print(pdf_url)
pdf = wi(filename= pdf_url, resolution= 300)
print('Read Succesfull')
pdfImage = pdf.convert('jpeg')
print('Converted')
imageBlobs = []
for img in pdfImage.sequence:
imgPage = wi(image=img)
imageBlobs.append(imgPage.make_blob('jpeg'))
return imageBlobs
你能给出一个解决方案如何解决这个问题!还是有其他方法可以做到这一点?