{"id":38670960,"url":"https://github.com/brkcvlk/pptxtoimages","last_synced_at":"2026-01-17T09:56:46.092Z","repository":{"id":304734690,"uuid":"1019779062","full_name":"brkcvlk/pptxtoimages","owner":"brkcvlk","description":"pptxtoimages is a lightweight Python package to convert .pptx PowerPoint presentations into high-quality image files (PNG by default).","archived":false,"fork":false,"pushed_at":"2025-07-16T15:54:23.000Z","size":42,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T05:28:34.377Z","etag":null,"topics":["converter","image-generation","powerpoint","powerpoint-files","pptx","pptx-to-images","pypi","pypi-package","python","python-library"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brkcvlk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-14T21:27:43.000Z","updated_at":"2025-08-20T13:31:27.000Z","dependencies_parsed_at":"2025-07-15T02:20:39.395Z","dependency_job_id":"71d7064a-f62a-4db8-8889-42f23eeeb6e4","html_url":"https://github.com/brkcvlk/pptxtoimages","commit_stats":null,"previous_names":["brkcvlk/pptxtoimages"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/brkcvlk/pptxtoimages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brkcvlk%2Fpptxtoimages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brkcvlk%2Fpptxtoimages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brkcvlk%2Fpptxtoimages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brkcvlk%2Fpptxtoimages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brkcvlk","download_url":"https://codeload.github.com/brkcvlk/pptxtoimages/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brkcvlk%2Fpptxtoimages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28505565,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["converter","image-generation","powerpoint","powerpoint-files","pptx","pptx-to-images","pypi","pypi-package","python","python-library"],"created_at":"2026-01-17T09:56:45.620Z","updated_at":"2026-01-17T09:56:46.078Z","avatar_url":"https://github.com/brkcvlk.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pptxtoimages\n\n[![PyPI version](https://img.shields.io/pypi/v/pptxtoimages.svg)](https://pypi.org/project/pptxtoimages/)\n[![Downloads](https://static.pepy.tech/badge/pptxtoimages)](https://pepy.tech/project/pptxtoimages)\n[![License](https://img.shields.io/github/license/brkcvlk/pptxtoimages.svg)](LICENSE)\n\n## Overview\n\n**pptxtoimages** is a lightweight Python package to convert `.pptx` PowerPoint presentations into high-quality image files (PNG by default).  \nIt uses LibreOffice (`soffice`) to convert `.pptx` files to PDF, then converts PDF pages to images using `pdf2image`.  \n\nThis project aims to provide an easy-to-use, open-source tool for developers who need to quickly generate slide images from PowerPoint files for further processing, presentations, or video creation.\n\n---\n\n## Features\n\n- Convert `.pptx` slides to images automatically  \n- Output images saved in PNG format by default  \n- Supports batch processing of multi-slide presentations  \n- Cross-platform support (Windows, Linux, macOS) with LibreOffice installed  \n- CLI support for quick command line usage  \n\n---\n\n## Installation\n\nMake sure you have the following prerequisites installed:\n\n- [LibreOffice](https://www.libreoffice.org/) (`soffice` command available in your system PATH)  \n- [Poppler](https://poppler.freedesktop.org/) utilities installed (`poppler-utils` on Linux)\n\nThen install the package via pip:\n\n```bash\n    pip install pptxtoimages\n```\n---\n\n## Usage\n### Python\n\n```\n    from pptxtoimages.tools import PPTXToImageConverter\n\n    # Initialize converter\n    converter = PPTXToImageConverter(pptx_path)\n\n    # Convert your .pptx file to images\n    images = converter.convert(\"path/to/presentation.pptx\", output_dir=\"output_images\")\n\n    print(f\"Converted {len(images)} slides to images.\")\n```\n\n### Command Line Interface (CLI)\nConvert a pptx file directly from the terminal :\n\n```\n    pptxtoimages-cli path/to/presentation.pptx --output output_images\n```\n\nNote : For more examples and details, please check the ```example.py``` file.\n\n\n\n---\n\n## Configuration \n- Output image format is PNG by default, but can be customized in the Converter class parameters.\n\n- Output directory will be created if it does not exist.\n\n## Development\n\n#### To contribute or develop locally:\n\n1. Clone the repository\n2. Create a virtual environment and activate it\n3. Install dependencies:\n```\n    pip install -r requirements.txt\n```\n4. Install pre-commit hooks (optional but recommended)\n    - This ensures your code is auto-formatted (e.g., by black) before each commit.\n###  Versioning\n- You may use `bump2version` to suggest version changes only if authorized by the project maintainer.\nPlease respect versioning boundaries – we welcome contributions, but all official releases are maintained and approved manually by the maintainer.\n\n6. Open a pull request\n\n---\n## Links\n\n- **[Download on PyPI](https://pypi.org/project/pptxtoimages/)**\n- **[View Download Stats](https://pepy.tech/project/pptxtoimages)**\n- **[View Source on GitHub](https://github.com/brkcvlk/pptxtoimages)**\n- **[Report Issues](https://github.com/brkcvlk/pptxtoimages/issues)**\n\n## Support This Project\nIf you find pptxtoimages helpful or useful, please consider giving it a star on GitHub!\nYour support helps the project grow and motivates further development.\n\n- **[Star this project on GitHub](https://github.com/brkcvlk/pptxtoimages)**\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n\n## Contact\n\nCreated by Burak Civelek\n\nFeel free to reach out for questions or suggestions!\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrkcvlk%2Fpptxtoimages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrkcvlk%2Fpptxtoimages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrkcvlk%2Fpptxtoimages/lists"}