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

Add fetchAsBase64Url to media reference props #1214

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mnayan
Copy link
Contributor

@mnayan mnayan commented Feb 19, 2025

Added fetchAsBase64Url method to media reference properties that encodes the response as a base64 url.

example encoded response: data:image/jpeg;base64,eyJjb250ZW50IjoiSGVsbG8gV29ybGQifQ==

@mnayan mnayan requested a review from ssanjay1 February 19, 2025 02:21
const buffer = Buffer.from(arrayBuffer);
const base64String = buffer.toString("base64");
const mimeType = response.headers.get("content-type") || "image/jpeg";
return `data:${mimeType};base64,${base64String}`;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can also just return a the base64 string instead of url here.

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

Successfully merging this pull request may close these issues.

1 participant