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


- Published on January 23rd 2026 by goro.
- 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")
- размер курсора
img = img.resize((32, 32), Image.LANCZOS)
- создаём обводку из альфа-канала
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
- Download original file: Cursor-2--Streamline-Nova.ani.png
Resources
- What is a mouse cursor?
- How to download and use a mouse cursor?
- Draw your own cursor online.
- Learn how to create animated cursors in a video tutorial.
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>



