Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Reuse png metadata handling of imsave() in FigureCanvasAgg.print_png().#15435
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
7aad47a
c212f2f
83f82f2
92a33aa
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -33,7 +33,6 @@ | ||
import numpy as np | ||
from PIL import Image | ||
import matplotlib as mpl | ||
from matplotlib import cbook | ||
@@ -485,8 +484,8 @@ def print_png(self, filename_or_obj, *args, | ||
Other keywords may be invented for other purposes. | ||
If 'Software' is not given, an autogenerated value forMatplotlib | ||
will be used. This can be removed by setting it to *None*. | ||
For more details see the `PNG specification`_. | ||
@@ -499,27 +498,10 @@ def print_png(self, filename_or_obj, *args, | ||
If the 'pnginfo' key is present, it completely overrides | ||
*metadata*, including the default 'Software' key. | ||
""" | ||
FigureCanvasAgg.draw(self) | ||
tacaswell marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
mpl.image.imsave( | ||
filename_or_obj, self.buffer_rgba(), format="png", origin="upper", | ||
dpi=self.figure.dpi, metadata=metadata, pil_kwargs=pil_kwargs) | ||
def print_to_buffer(self): | ||
FigureCanvasAgg.draw(self) | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1514,18 +1514,37 @@ def imsave(fname, arr, vmin=None, vmax=None, cmap=None, format=None, | ||
origin = mpl.rcParams["image.origin"] | ||
if origin == "lower": | ||
arr = arr[::-1] | ||
if (isinstance(arr, memoryview) and arr.format == "B" | ||
and arr.ndim == 3 and arr.shape[-1] == 4): | ||
# Such an ``arr`` would also be handled fine by sm.to_rgba (after | ||
# casting with asarray), but it is useful to special-case it | ||
# because that's what backend_agg passes, and can be in fact used | ||
# as is, saving a few operations. | ||
rgba = arr | ||
else: | ||
rgba = sm.to_rgba(arr, bytes=True) | ||
if pil_kwargs is None: | ||
pil_kwargs = {} | ||
pil_shape = (rgba.shape[1], rgba.shape[0]) | ||
image = PIL.Image.frombuffer( | ||
"RGBA", pil_shape, rgba, "raw", "RGBA", 0, 1) | ||
if format == "png": | ||
# Only use the metadata kwarg if pnginfo is not set, because the | ||
# semantics of duplicate keys in pnginfo is unclear. | ||
if "pnginfo" in pil_kwargs: | ||
if metadata: | ||
cbook._warn_external("'metadata' is overridden by the " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I could also see a case for raising, but warning seems like a step in the right direction. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I left this as is but can raise too, just pick one. | ||
"'pnginfo' entry in 'pil_kwargs'.") | ||
else: | ||
metadata = { | ||
"Software": (f"Matplotlib version{mpl.__version__}, " | ||
f"https://matplotlib.org/"), | ||
**(metadata if metadata is not None else {}), | ||
QuLogic marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
} | ||
pil_kwargs["pnginfo"] = pnginfo = PIL.PngImagePlugin.PngInfo() | ||
for k, v in metadata.items(): | ||
if v is not None: | ||
pnginfo.add_text(k, v) | ||
if format in ["jpg", "jpeg"]: | ||
format = "jpeg" # Pillow doesn't recognize "jpg". | ||
facecolor = mpl.rcParams["savefig.facecolor"] | ||