Quantcast
Channel: magick Issue Tracker Rss Feed
Viewing all 1011 articles
Browse latest View live

Commented Unassigned: Setting VirtualPixelMethod throws an error [1374]

$
0
0
Setting the VirtualPixelMethod throws an error.

```
Unable to find an entry point named 'MagickImage_VirtualPixelMethod_Set' in DLL 'Magick.NET-Q16-x64.Native.dll'.

at ImageMagick.MagickImage.NativeMethods.X64.MagickImage_VirtualPixelMethod_Set(IntPtr instance, UIntPtr value, IntPtr& exception)
at ImageMagick.MagickImage.NativeMagickImage.set_VirtualPixelMethod(VirtualPixelMethod value)
```

The code was executing well in the previous build. This error seems to be new in 7.0.0.0101.
Comments: Thanks for reporting this. I just pushed a fix for this and this will be resolved in the next version of Magick.NET 7.0.0.0102 that I will try to publish this weekend.

Edited Issue: Setting VirtualPixelMethod throws an error [1374]

$
0
0
Setting the VirtualPixelMethod throws an error.

```
Unable to find an entry point named 'MagickImage_VirtualPixelMethod_Set' in DLL 'Magick.NET-Q16-x64.Native.dll'.

at ImageMagick.MagickImage.NativeMethods.X64.MagickImage_VirtualPixelMethod_Set(IntPtr instance, UIntPtr value, IntPtr& exception)
at ImageMagick.MagickImage.NativeMagickImage.set_VirtualPixelMethod(VirtualPixelMethod value)
```

The code was executing well in the previous build. This error seems to be new in 7.0.0.0101.

Closed Issue: Setting VirtualPixelMethod throws an error [1374]

$
0
0
Setting the VirtualPixelMethod throws an error.

```
Unable to find an entry point named 'MagickImage_VirtualPixelMethod_Set' in DLL 'Magick.NET-Q16-x64.Native.dll'.

at ImageMagick.MagickImage.NativeMethods.X64.MagickImage_VirtualPixelMethod_Set(IntPtr instance, UIntPtr value, IntPtr& exception)
at ImageMagick.MagickImage.NativeMagickImage.set_VirtualPixelMethod(VirtualPixelMethod value)
```

The code was executing well in the previous build. This error seems to be new in 7.0.0.0101.

Created Unassigned: Swirl is broken [1375]

$
0
0
Looks like Swirl() is not working in 7.0.0.0101. There is no explicit exception being thrown. It seems to process for a moment, but the image remains unchanged.

Edited Issue: Swirl is broken [1375]

$
0
0
Looks like Swirl() is not working in 7.0.0.0101. There is no explicit exception being thrown. It seems to process for a moment, but the image remains unchanged.

Commented Issue: Swirl is broken [1375]

$
0
0
Looks like Swirl() is not working in 7.0.0.0101. There is no explicit exception being thrown. It seems to process for a moment, but the image remains unchanged.
Comments: Thanks for reporting this. I was calling the internal Swirl method with the arguments in a incorrect order. This will be resolved in the next version of Magick.NET (7.0.0.0102)

Edited Issue: Swirl is broken [1375]

$
0
0
Looks like Swirl() is not working in 7.0.0.0101. There is no explicit exception being thrown. It seems to process for a moment, but the image remains unchanged.

Closed Issue: Swirl is broken [1375]

$
0
0
Looks like Swirl() is not working in 7.0.0.0101. There is no explicit exception being thrown. It seems to process for a moment, but the image remains unchanged.

Commented Unassigned: Mono support is missing [1359]

$
0
0
If I understand well, because of the nature of accessing embedded dlls it is impossible to use the mono dllmap feature to use the library on mono.

If there would be a version which would ship the dlls as non-embedded files, it would be simple to map to the apropriate .so files on Linux.
Comments: Magick.NET is now available for .NET Core on Windows: http://www.nuget.org/packages?q=Magick.NET.Core

Commented Unassigned: Mono support is missing [1359]

$
0
0
If I understand well, because of the nature of accessing embedded dlls it is impossible to use the mono dllmap feature to use the library on mono.

If there would be a version which would ship the dlls as non-embedded files, it would be simple to map to the apropriate .so files on Linux.
Comments: That is excellent news!

Created Feature: Add build instructions [1376]

$
0
0
Add a file that explains how to build Magick.NET.

Created Unassigned: AdaptiveBlur broken [1377]

$
0
0
In 7.0.0.0102 (and possibly 0101) AdaptiveBlur is not working. It returns the original image after processing. Looks similar to Swirl.

Commented Unassigned: AdaptiveBlur broken [1377]

$
0
0
In 7.0.0.0102 (and possibly 0101) AdaptiveBlur is not working. It returns the original image after processing. Looks similar to Swirl.
Comments: Have you tried to see if disabling OpenCL solves the issue?

Created Unassigned: Animated gif generating [1378]

$
0
0
I can't really understand, why gif animation isn't working without this?
```
//Optionally reduce colors
QuantizeSettings settings = new QuantizeSettings { Colors = 256 };
collection.Quantize(settings);

// Optionally optimize the images (images should have the same size).
collection.Optimize();
```
2 png frames, same size. Without code above it creates gif with only 1 frame. With code above, everything is fine. Is it a bug of reature?

Commented Unassigned: Animated gif generating [1378]

$
0
0
I can't really understand, why gif animation isn't working without this?
```
//Optionally reduce colors
QuantizeSettings settings = new QuantizeSettings { Colors = 256 };
collection.Quantize(settings);

// Optionally optimize the images (images should have the same size).
collection.Optimize();
```
2 png frames, same size. Without code above it creates gif with only 1 frame. With code above, everything is fine. Is it a bug of reature?
Comments: Can you attach your two images? And do you set the AnimationDelay of each frame?

Commented Unassigned: AdaptiveBlur broken [1377]

$
0
0
In 7.0.0.0102 (and possibly 0101) AdaptiveBlur is not working. It returns the original image after processing. Looks similar to Swirl.
Comments: I left a message in your e-mail inbox. I cannot reproduce this issue. The unit test that I have for AdaptiveBlur passes without any issues.

Commented Unassigned: AdaptiveBlur broken [1377]

$
0
0
In 7.0.0.0102 (and possibly 0101) AdaptiveBlur is not working. It returns the original image after processing. Looks similar to Swirl.
Comments: Sorry, spam filter caught that email. I'll try to create a demo to reproduce it. Hopefully it is something in my code. :)

Commented Unassigned: AdaptiveBlur broken [1377]

$
0
0
In 7.0.0.0102 (and possibly 0101) AdaptiveBlur is not working. It returns the original image after processing. Looks similar to Swirl.
Comments: False alarm. Turns out it was my code after all.

Closed Unassigned: AdaptiveBlur broken [1377]

$
0
0
In 7.0.0.0102 (and possibly 0101) AdaptiveBlur is not working. It returns the original image after processing. Looks similar to Swirl.

Commented Feature: Add build instructions [1376]

$
0
0
Add a file that explains how to build Magick.NET.
Comments: Added a simple document here: https://magick.codeplex.com/SourceControl/latest#Building.md and here: https://magick.codeplex.com/SourceControl/latest#Magick.NET.Core/Building.md.
Viewing all 1011 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>