Hello,
I have tried this:
```
using (MagickImage image = new MagickImage())
{
image.Font = "Arial";
image.FontPointsize = 20;
image.StrokeColor = Color.Black;
image.Read("label:normal<b>bold</b>");
image.Write("result.gif");
}
```
and it seems to work. If I change __label__ with __caption__ - it works, but when I tried to replace __label__ with __pango__ it shows following:
Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at Magick.Image.read(Image* , basic_string<char\,std::char_traits<char>\,std::allocator<char> >* )
at ImageMagick.MagickReader.Read(Image* image, String fileName, MagickReadSettings readSettings)
at ImageMagick.MagickImage.Read(String fileName)
So my question is does Magick.NET support pango?
Comments: Fixed in ImageMagick
I have tried this:
```
using (MagickImage image = new MagickImage())
{
image.Font = "Arial";
image.FontPointsize = 20;
image.StrokeColor = Color.Black;
image.Read("label:normal<b>bold</b>");
image.Write("result.gif");
}
```
and it seems to work. If I change __label__ with __caption__ - it works, but when I tried to replace __label__ with __pango__ it shows following:
Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at Magick.Image.read(Image* , basic_string<char\,std::char_traits<char>\,std::allocator<char> >* )
at ImageMagick.MagickReader.Read(Image* image, String fileName, MagickReadSettings readSettings)
at ImageMagick.MagickImage.Read(String fileName)
So my question is does Magick.NET support pango?
Comments: Fixed in ImageMagick