]> granicus.if.org Git - imagemagick/commitdiff
...
authorCristy <urban-warrior@imagemagick.org>
Sun, 5 Mar 2017 15:27:39 +0000 (10:27 -0500)
committerCristy <urban-warrior@imagemagick.org>
Sun, 5 Mar 2017 15:27:39 +0000 (10:27 -0500)
Magick++/lib/Image.cpp
Magick++/lib/Magick++/Image.h

index 52de0a0bf089b68de1228ebd7fc9f69e9a1c6c93..8e18fd12f63cdeab7dbc518e90824863b10b4d80 100644 (file)
@@ -1970,6 +1970,14 @@ std::string Magick::Image::artifact(const std::string &name_) const
   return(std::string());
 }
 
+void Magick::Image::attribute(const std::string name_,const char *value_)
+{
+  modifyImage();
+  GetPPException;
+  SetImageProperty(image(),name_.c_str(),value_,exceptionInfo);
+  ThrowImageException;
+}
+
 void Magick::Image::attribute(const std::string name_,const std::string value_)
 {
   modifyImage();
index 68bb56db09bd0575cb22c5f232fdb902a1cfd983..835f3f6605b1bf4932ef176c6f876ff17c6e7df5 100644 (file)
@@ -624,6 +624,7 @@ namespace Magick
     std::string artifact(const std::string &name_) const;
 
     // Access/Update a named image attribute
+    void attribute(const std::string name_,const char *value_);
     void attribute(const std::string name_,const std::string value_);
     std::string attribute(const std::string name_) const;