Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Returning KeyError for embedded_metadata when uploading with base64 #35

Closed
mooreman11 opened this issue Jan 20, 2023 · 1 comment
Closed

Comments

@mooreman11
Copy link

mooreman11 commented Jan 20, 2023

This is specific to when I upload the file with Base64 encoding (all the other encodings are not working for me when uploading with File objects from Django).

UploadFileResult.py

if embedded_metadata is None or embedded_metadata == {}:
    self.embedded_metadata = EmbeddedMetadata(None, None, None, None)
else:
    if type(embedded_metadata) == EmbeddedMetadata:
        self.embedded_metadata = embedded_metadata
    else:
        self.embedded_metadata: EmbeddedMetadata = EmbeddedMetadata(
            embedded_metadata["x_resolution"],
            embedded_metadata["y_resolution"],
            embedded_metadata["date_created"],
            embedded_metadata["date_timecreated"],
        )

I debugged the code and realized that the keys are not the same. I also did not receive keys for date_created and date_timecreated.
This is an example of the dict embedded_metadata from my debugger console: embedded_metadata = {'ModifyDate': '0000:00:00 00:00:00', 'XResolution': 72, 'YResolution': 72, 'ImageWidth': 480, 'ImageHeight': 848, 'ImageSize': '480x848', 'Megapixels': 0.407}

aman-squareboat pushed a commit to aman-squareboat/imagekit-python that referenced this issue Jun 21, 2023
imagekitio added a commit that referenced this issue Jun 23, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix issue #35 #37 #41 #44
@imagekitio
Copy link
Contributor

Fixed in version 3.0.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants