William Faulk
William Faulk
I agree with the other posters. If I need to restart the server for some reason there's no graceful way to do it if jobs are in progress. A way...
Here's a crude workaround - Add a wait queue as the first priority and fill it with jobs which do nothing but run until a condition is met. Periodically check...
SixLabors ImageSharp 2.1.2 and .Net Core 6.0. Same issue here working with images from a repository. They have confidential information so I can't attach the originals as in the OP's...
Here is the image info from imagemagick. https://pastebin.com/eaB7puQ6 > tiff:photometric: min-is-black If I convert to a png it looks as it should although obviously as separate images. I'll see if...
I used the imagemagick command you suggested to convert the original tiff to png file(s) and they looked like they should. In c#, I tried converting the tiff pages to...
``` public byte[] PdfFromImage( string fileName, byte[] documentBytes ) { byte[] byteResult; using ( var ms = new MemoryStream( documentBytes ) ) { var document = new Aspose.Pdf.Document(); ms.Position =...
Well, I guess I could have tried the obvious... ``` if(format.Name.Equals("TIFF")) { frame.Mutate( x => x.Invert() ); } ``` I'm getting images from a third party repository and in my...
This was added to the [1.9.0 milestone for librdkafka](https://github.com/edenhill/librdkafka/milestone/24?closed=1) so hopefully it will make its way to this package as well.
> i just uploaded v1.9.0-RC2b to nuget - can you check if this is resolved? It's a package used in a shared package here. I'm talking with the devs to...
Now I get a different error. I might not have a good way to test without taking too much time away from my work tasks. The original issue only seems...