Skip to main content

ani file reader and writer

Project description

ani_file

.ani file (animated cursor) reader and writer written in python 3.

Was trying to batch extract the frames of some .ani file I got but noticed that there were no library to do so in python so I created one.

Reader can read metadata and extract frames (into either .cur or .ico as encoded in the .ani).

Writer can create .ani from .cur, .ico, or other file types like .png as supported by Iconolatry. .cur files may be created as needed and will be stored in the same folder as the .ani file.

Starting point

Clone this repo or download package from Pypi with pip install ani_file:

Open ANI file in similar manner to builtin.open():

    from ani_file import ani_file
    f = ani_file.open(file,mode)

file can be string or file-like object.

mode can be: "r" or "rb" to read an existing .ani file. "w" or "wb" to create a new .ani file. Will overwrite existing file if there is one

Read .ani

Available getter:

getframesinfo(): return metadata in the anih header chunk

getnframes(): return number of frames

getseq(): return list of sequence in which the frames appear

getrate(): return list of display rate for each frame

getframesdata(): return list of binary data of each frame

getauthor(): Get name of artist/corporation if present

getname(): Get ani file name (Not the name of the .ani file) if present

Extract and save frames into .ico files:

saveframestofile(outputpath,filenameprefix): Save to specified path. Name of each file will be filenameprefix + index from 0

Write .ani

Available setter:

setframespath(framespath,xy): set list of .ico/.cur files that make the frames of the final .ani file. xy is a list of the cursor's hotspot defined as offset from the top-left corner and is a property of .cur file. If framespath are not .cur files (or .ico with xy specified) then .cur file will be generated. If framespath are .cur files then xy will be ignored.

setseq(seq): set seq

setrate(rate): set rate

setauthor(iart): set name of artist

setname(inam): set name of the ani file

Example

    from ani_file import ani_file
    #Creating .ani file from .png
    f = ani_file.open(".\\out\\ani.ani","w")
    lists = [".\\res\\cursor0.png",
        ".\\res\\cursor1.png",
        ".\\res\\cursor2.png",]
    f.setframespath(lists,xy=(0,0))
    f.close

    #extracting frames from existing .ani file
    f = ani_file.open(".\\out\\ani.ani","r")
    f.saveframestofile(".\\out","cursor")

.ani file structure explain

https://www.informit.com/articles/article.aspx?p=1189080&seqNum=3

https://www.daubnet.com/en/file-format-ani

Code based on wave.py at https://github.com/python/cpython/blob/3.10/Lib/wave.py. Cursor converter is Iconolatry from https://github.com/SystemRage/Iconolatry/tree/master.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ani_file-0.1.3.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

ani_file-0.1.3-py3-none-any.whl (22.8 kB view details)

Uploaded Python 3

File details

Details for the file ani_file-0.1.3.tar.gz.

File metadata

  • Download URL: ani_file-0.1.3.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.5

File hashes

Hashes for ani_file-0.1.3.tar.gz
Algorithm Hash digest
SHA256 6e2a1f1570d4fb84cf9adda0e254806d715ce044e9b3a87f8665758f9b3d67a2
MD5 cd408ad6a3b221bba76ba6f2c6762733
BLAKE2b-256 8686c507bc286f284d6b65021b200101ac546b51a968ab21eb9b8fc17aade4c8

See more details on using hashes here.

File details

Details for the file ani_file-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: ani_file-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 22.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.5

File hashes

Hashes for ani_file-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4984a20f32dd42a1be609fbf82d20d8f5ec1013e07e5ef5a7fdf7e275dca9ff9
MD5 f95e211a6d0b8ed22146c3a1ff0e3ea8
BLAKE2b-256 82224f1c860854e4b575b2f5c119b1460a434b58514d5010e4f0881b02dc751b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page