Metadata-Version: 2.1
Name: imgextract
Version: 0.0.1
Summary: A python package for extracting images from PDF/TIF files
Home-page: https://github.com/scionoftech/imgextract
Author: Sai Kumar Yava
Author-email: saikumar.geek@gmail.com
License: MIT
Download-URL: https://github.com/scionoftech/imgextract/releases/tag/imgextract_stable_v0.0.1
Description: # imgextract 
        
        [imgextract v0.0.1](https://pypi.org/project/imgextract/)
        
        This python package can be used for extracting pages from PDF and TIF/TIFF files.
        
        
        This packages uses poppler for reading pdf files, for windows platform it has been included in package but for linux we have to install it manually.
        
        ## How to get poppler
        
        Download poppler from [poppler](https://poppler.freedesktop.org/)
        
        Install poppler in linux [stackoverflow](https://stackoverflow.com/questions/32156047/how-to-install-poppler-in-ubuntu-15-04)
        
        ## How to use
        
        ### pdf page extraction
        
        ```python
        
        from imgextract.imgext import ImgExtractor
        
        if __name__ == "__main__":
            ss = ImgExtractor()
            # input files path, out put files path and file type
            ss.extract("/home/user/pdf_files", "/home/user/image_files", "pdf")
        
        
        ```
        
        ### tif/tiff image extraction
        
        ```python
        
        from imgextract.imgext import ImgExtractor
        
        if __name__ == "__main__":
            ss = ImgExtractor()
            # input files path, out put files path and file type
            ss.extract("/home/user/tif_files", "/home/user/image_files", "tif")
        
        
        ```
        
        ### GUI for Image extraction
        
        
        [![GUI for Image extraction](screenshot.png)](https://pypi.org/project/imgextract/)
        
        
        ```python
        
        from imgextract.imggui import GuiExtractor
        
        if __name__ == "__main__":
            ss = GuiExtractor()
            ss.openwindow()
        
        
        ```
        
        ### Installation
        
        ```shell
        $ pip install imgextract
        ```
        
        ### License
        
          [MIT](LICENSE)
Keywords: pdf,tif,tiff,image
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
