Skip to content

Draneria/Metallics-by-Draneria_Krita-Brushes

Repository files navigation

Metallics by Draneria: Poster. Showcases 10 brushes of faux and real metallic effects

This is a set of brushes that emulate metallic effects, for Krita.

Hello there, this is my first time making brushes! If anyone tries them out, I'd absolutely love to see your art. These can definitely be improved, but I hope you enjoy! (。•̀ᴗ-)✧


💜 Download from Ko-Fi!

https://ko-fi.com/s/c567fcfd29



💜 Download from Github!

https://github.com/Draneria/Metallics-by-Draneria_Krita-Brushes/releases/tag/v1.0

╰── Pick the ".bundle" if you are uncertain :>




🎁 What’s Inside 🎁


🖌️ ✦ 32 Brushes

╰── Everything from glitter and gold leaf to hammered metal.

📚 ✦ 13 Textures

╰── Such as verdigris grunge and metal foil.

⚜️ ✦ 3 Patterns

╰── Inspired by Art Deco and Ukiyo-e.

🎨 ✦ 1 Palette

╰── Convenient true-to-metal tones.

🛠 ✦ 23 Brushtips

╰── Including unique RGBA tips for custom brush creation.

📜 ✦ 1 PDF Guide

╰── Comes with an install guide, reference sheets and creative inspiration.




✔️ Completely Free ✔️Clean Icons ✔️Descriptive Titles ✔️Everything Tagged ✔️Incredibly Swag ✔️PDF Guide ✔️RGBA ✔️Unrestricted Colours ✔️Pen & Mouse Optimised




Installation:

1. Install Krita, if not already done.

2. Go to “Settings” and press “Manage Resources Libraries…”.

3. Press “Import” then select the .bundle file.

4. Restart Krita, and enjoy!



License type: CC-BY-SA


✦ Some brushes use resources made by Memileo, from "Rotating light brushtips WIP" and "Memileo Impasto Brushes". Thank you Memileo!


🖌 https://krita-artists.org/t/memileo-impasto-brushes/92952/56


Thank you for reading (ノ◕ヮ◕)ノ*:・゚


Metallics Brush Set Demo GIF




💜 Need help? Check out this post for discussions and info:


https://krita-artists.org/t/metallics-by-draneria/106425


Extra Note: for NixOS Users, or anyone having issues getting the brushes to load:

libpng may truncate iTXt Metadata, which isn't great! I think this is a problem with Krita itself, so this fix may apply if you are having problems with other brushes too. (no promises tho)

SOLUTION: Recompile libpng with this patch (Thank you Shiryel 👑):

--- a/scripts/pnglibconf.dfa
+++ b/scripts/pnglibconf.dfa
@@ -516,8 +516,8 @@ setting USER_WIDTH_MAX default        1000000
 setting USER_HEIGHT_MAX default       1000000

 # Use 0 for unlimited
-setting USER_CHUNK_CACHE_MAX default     1000
-setting USER_CHUNK_MALLOC_MAX default 8000000
+setting USER_CHUNK_CACHE_MAX default  0
+setting USER_CHUNK_MALLOC_MAX default 0

 # If this option is enabled APIs to set the above limits at run time are added;
 # without this the hardwired (compile time) limits will be used.

Also, here is the overlay for NixOS users:

qt5 = p.qt5.overrideScope (qtf: qtp: {
  qtbase = qtp.qtbase.override {
    libpng = p.libpng.overrideAttrs (old: {
      patches = [ ./libpng.patch ];
    });
  };
});