Cursor-2--Streamline-Nova.ani.cur

Cursor-2--Streamline-Nova.ani.cur
Cursor-2--Streamline-Nova.ani.cur HD version
  • Published on January 23rd 2026 by .
  • Released under the Release to Public Domain license.
  • Designated to be used as a Unavailable cursor by right- or left-handed people.
  • Static (non-animated) cursor.

from PIL import Image, ImageFilter

img = Image.open("cursor.png").convert("RGBA")

  1. размер курсора

img = img.resize((32, 32), Image.LANCZOS)

  1. создаём обводку из альфа-канала

alpha = img.split()[-1]
outline = alpha.filter(ImageFilter.MaxFilter(3))
outline = outline.filter(ImageFilter.GaussianBlur(0.6))

outline_img = Image.new("RGBA", img.size, (255, 255, 255, 0))
outline_img.putalpha(outline)

final = Image.alpha_composite(outline_img, img)

final.save("cursor.cur")

Additional downloads

Resources

HTML cursor code

To use the cursor on your web or a MySpace profile, add the following code to your page:

<style type="text/css">
body {cursor: url(http://www.rw-designer.com/cursor-extern.php?id=241854, auto);}
</style>
<a href="http://www.rw-designer.com/cursor-detail/241854"
title="Get free cursors for your web.">Cursor-2--Streamline-Nova.ani.cur Cursor</a>