Anders Melander

Results 94 comments of Anders Melander

While there are no plans as such to support cocoa there are also no plans not to support it. All it takes is someone with access to the platform to...

There isn't any documentation updates because nobody has had time to write it :-( The problem with the current documentation system is that it is based on custom command line...

Hmm. Have you looked at the source of those MkDocs sites? Spoiler; It's [a hand edited mix of markdown and html](https://raw.githubusercontent.com/mkdocs/mkdocs/master/docs/index.md). So as far as I can see MkDocs is...

Do you mean that the unit files are missing or that they are not referenced in the run-time package?

I'm rewriting all the packages files (they're a bit of a mess right now) so this will get fixed as a part of that.

If you examine the RGB values of your original image (not the one you have uploaded which contains JPEG artifacts) I'll bet you will find that the values are as...

I just realized that you could do the noise thing with a custom sampler. Here's a palette sampler that can apply noise: ``` type TNoisePaletteSampler = class(TPaletteSampler) private FNoiseLevel: TFloat;...

Okay, so I just made a test with a 1x256 bitmap filled with a linear gradient going from black to white. This should produce a bitmap with 256 distinct gray...

@lbWishmaster Your example is flagged by BitDefender as a trojan (Gen:Variant.Ursu.750045) on my system. Probably a false positive.

I believe the problem is with the `TColor32Gradient` rasterization. If I replace that with a hardcoded palette going from $FF000000 to $FFFFFFFF then the output is correct: ![image](https://user-images.githubusercontent.com/18141921/74603669-3e6fb680-50b6-11ea-83b6-d8f0f4fad099.png) Can you...