Metadata-Version: 2.4
Name: img2vector
Version: 1.2.0
Summary: Intelligent image to SVG vectorization with AI-powered optimization
Home-page: https://github.com/sohail000/img2vector
Author: Sohail Khan
Author-email: 2013khansohail@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: vtracer
Requires-Dist: scikit-image
Requires-Dist: opencv-python
Requires-Dist: numpy
Requires-Dist: pillow
Requires-Dist: gradio>=3.0.0
Requires-Dist: tqdm
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# img2vector


![img2vector](https://github.com/user-attachments/assets/4a6786ef-458f-417e-b3eb-11723307235b)


[![PyPI version]fury.io/py/img2vector.svg)](https://badge.fury.io/py/img2vector)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

An intelligent image to SVG vectorization tool with AI-powered optimization.

## Features

- **AI-Based Image Analysis**: Automatically detects image type and optimizes conversion parameters
- **High-Quality Vectorization**: Convert raster images to clean, editable SVG vectors
- **Preprocessing Options**: Multiple levels of image preprocessing for optimal results
- **Batch Processing**: Convert multiple images in parallel
- **SVG Optimization**: Reduce file size while maintaining quality
- **Web Interface**: User-friendly Gradio UI for easy conversion
- **Python API**: Use as a library in your Python projects

## Installation

```bash
pip install img2vector
```

## Quick Start

### Basic Usage

```python
# Simple conversion with default settings (auto-optimization)
from img2vector import convert_image

convert_image("input.jpg", "output.svg")
```

### Advanced Usage

```python
from img2vector import Img2Vector

# Create a converter instance
converter = Img2Vector()

# Convert with specific parameters
converter.convert(
    "input.jpg",
    output_path="output.svg",
    auto_optimize=True,  # Will still respect your manual parameters
    preprocessing_level="medium",
    colormode="binary",
    hierarchical="stacked"
)
```

### Batch Processing

```python
from img2vector import batch_convert

# Convert all images in a folder
batch_convert(
    "input_folder/",
    "output_folder/",
    num_workers=4,  # Process 4 images in parallel
    recursive=True,  # Include subfolders
    preprocessing_level="light"
)
```

### SVG Optimization

```python
from img2vector import optimize_svg

# Optimize an SVG file to reduce file size
result = optimize_svg("input.svg", "optimized.svg", level="moderate")
output_path, size_before, size_after, reduction_percentage = result

print(f"File size reduced by {reduction_percentage:.1f}%")
print(f"Original: {size_before/1024:.1f} KB → Optimized: {size_after/1024:.1f} KB")
```

### Web Interface

To launch the user-friendly web interface:

```python
from img2vector.app import main

main()
```

Or, when installed as a package:

```bash
img2vector ui
```
With preprocessing as light
![light](https://github.com/user-attachments/assets/fbeeaac7-3244-4594-a386-184c495e7021)

With preprocessing as None

![None](https://github.com/user-attachments/assets/060f186b-6d1c-4712-bdfe-b121b7d5ed5a)

UI details 
![UI details](https://github.com/user-attachments/assets/0f9a265a-f4d8-4b5f-8b51-62c5136d6ac0)


## Image Type Detection

img2vector's intelligent detection model recognizes these image types and applies optimal parameters for each:

- **Line Drawing**: Black and white sketches, hand drawings
- **Technical Drawing**: Technical diagrams, blueprints, schematics
- **Geometric Shapes**: Simple shapes like circles, squares, triangles
- **Diagram**: Flowcharts, mind maps, organizational charts
- **Photo**: Photographs or complex images

## Parameters

### Basic Parameters

- **auto_optimize** (bool): Enable AI-based parameter optimization
- **preprocessing_level** (str): "none", "light", "medium", or "heavy"
- **colormode** (str): "color" or "binary" vectorization mode
- **hierarchical** (str): "stacked" or "cutout" layering style
- **mode** (str): "spline" (smooth curves) or "polygon" (straight lines)

### Advanced Parameters

- **filter_speckle** (int): Speckle filtering level (0-20)
- **color_precision** (int): Color precision level (1-10)
- **layer_difference** (int): Layer difference threshold (1-32)
- **corner_threshold** (int): Corner detection threshold (0-180)
- **length_threshold** (float): Length threshold for path simplification (0-10)
- **max_iterations** (int): Maximum iterations for path optimization (1-20)
- **splice_threshold** (int): Splice threshold for path joining (0-90)
- **path_precision** (int): Path coordinate precision (1-10)

## Tips for Best Results

- **For technical diagrams**: Use the 'binary' color mode with 'polygon' option
- **For smooth curves**: Use 'spline' mode with low corner threshold values
- **For crisp edges**: Use 'polygon' mode with high corner threshold values
- **For noisy images**: Try 'medium' or 'heavy' preprocessing and increase filter_speckle
- **For color images**: Auto-optimization works best, or manually use 'color' mode with higher color precision
- **For smaller file sizes**: Use lower path_precision values and higher filter_speckle values

## Preprocessing Levels

- **none**: No preprocessing, use original image
- **light**: Basic noise reduction and contrast enhancement
- **medium**: More aggressive denoising and edge enhancement
- **heavy**: Thresholding and morphological operations for maximum clarity

## Examples

### Converting a Photo with Auto-Optimization

```python
from img2vector import convert_image

# Auto-detect that it's a photo and apply optimal parameters
convert_image("photo.jpg", "photo.svg")
```

### Converting a Line Drawing to Binary SVG

```python
from img2vector import Img2Vector

converter = Img2Vector()
converter.convert(
    "sketch.png",
    output_path="sketch.svg",
    colormode="binary",
    mode="spline",
    preprocessing_level="light"
)
```

### Converting a Technical Diagram

```python
from img2vector import convert_image

convert_image(
    "diagram.png",
    "diagram.svg",
    auto_optimize=False,
    colormode="binary",
    mode="polygon",
    corner_threshold=80,
    length_threshold=2.0
)
```

### Using a PIL Image

```python
from PIL import Image
from img2vector import Img2Vector

# Open with PIL and process before vectorizing
img = Image.open("input.jpg")
img = img.resize((800, 600))
img = img.convert("RGB")

converter = Img2Vector()
converter.convert(img, output_path="processed.svg")
```

## API Reference

### Main Functions

#### `convert_image(input_path, output_path=None, auto_optimize=True, preprocessing_level="none", **kwargs)`

The primary helper function for simple conversions.

- **input_path** (str): Path to the input image file
- **output_path** (str, optional): Path to save the output SVG file. If None, returns SVG content.
- **auto_optimize** (bool): Whether to automatically optimize parameters based on image type
- **preprocessing_level** (str): Level of preprocessing ("none", "light", "medium", "heavy")
- **kwargs**: Additional parameters to pass to the converter

#### `batch_convert(input_folder, output_folder, num_workers=4, recursive=False, file_extensions=('.jpg', '.jpeg', '.png', '.bmp', '.gif'), auto_optimize=True, preprocessing_level="none", **kwargs)`

Convert multiple images to SVG in batch mode with parallel processing.

- **input_folder** (str): Path to folder containing input images
- **output_folder** (str): Path to folder for output SVG files
- **num_workers** (int): Number of parallel workers (default: 4)
- **recursive** (bool): Whether to search for images in subfolders
- **file_extensions** (tuple): Supported file extensions
- **auto_optimize** (bool): Whether to use auto-optimization
- **preprocessing_level** (str): Preprocessing level
- **kwargs**: Additional parameters to pass to the converter

#### `optimize_svg(svg_path, output_path=None, level='moderate')`

Optimize an SVG file to reduce file size.

- **svg_path** (str): Path to SVG file
- **output_path** (str, optional): Path to save optimized SVG. If None, overwrites input file.
- **level** (str): Optimization level - 'light', 'moderate', or 'aggressive'

Returns a tuple: (output_path, size_before, size_after, reduction_percentage)

### Classes

#### `Img2Vector`

The core converter class with full parameter control.

```python
converter = Img2Vector()
converter.convert(
    input_image,      # Path or PIL Image
    output_path=None, # Output path (if None, returns SVG content)
    auto_optimize=True,
    preprocessing_level="none",
    colormode="color",
    hierarchical="stacked",
    mode="spline",
    filter_speckle=4,
    color_precision=6,
    layer_difference=16,
    corner_threshold=60,
    length_threshold=4.0,
    max_iterations=10,
    splice_threshold=45,
    path_precision=3
)
```

## Troubleshooting

### Common Issues

#### SVG Output Has Missing Elements or Strange Artifacts

- Try different preprocessing levels - "medium" or "heavy" can help with noisy images
- For binary images with thin lines, using "light" preprocessing may preserve more details
- Adjust filter_speckle: lower values (1-2) keep more details, higher values remove noise

#### Conversion is Too Slow

- Use a lower color_precision value (3-5) for faster processing
- Set mode="polygon" which is generally faster than "spline"
- For batch processing, adjust num_workers based on your CPU cores (usually cores-1)

#### File Size is Too Large

- Decrease path_precision (try 2 or 1)
- Increase filter_speckle to remove small details
- Use SVG optimization with level="aggressive"
- Try mode="polygon" instead of "spline"

#### Paths Are Too Jagged or Smooth

- For jagged paths: use mode="spline" with lower corner_threshold (30-50)
- For smoother corners: increase corner_threshold (70-90)
- Adjust length_threshold: lower values (1-2) preserve more details, higher values simplify paths

### Advanced Usage

#### Handling Multiple Image Types in a Single Batch

If you have a mix of different image types in a batch process:

```python
import os
from img2vector import batch_convert, convert_image

# Define custom parameters for specific file patterns
def custom_conversion(input_path, output_path):
    # Use specific parameters based on filename patterns
    filename = os.path.basename(input_path).lower()
    
    if "diagram" in filename or "tech" in filename:
        # Technical drawings
        return convert_image(
            input_path, 
            output_path,
            auto_optimize=True,
            colormode="binary",
            mode="polygon"
        )
    elif "sketch" in filename or "drawing" in filename:
        # Hand-drawn content
        return convert_image(
            input_path, 
            output_path,
            auto_optimize=True,
            preprocessing_level="light",
            mode="spline"
        )
    else:
        # Default photos
        return convert_image(
            input_path, 
            output_path,
            auto_optimize=True
        )

# Process each file in a directory
input_dir = "mixed_images/"
output_dir = "mixed_output/"
os.makedirs(output_dir, exist_ok=True)

for filename in os.listdir(input_dir):
    if filename.lower().endswith(('.jpg', '.jpeg', '.png')):
        input_path = os.path.join(input_dir, filename)
        output_path = os.path.join(output_dir, os.path.splitext(filename)[0] + '.svg')
        custom_conversion(input_path, output_path)
```

## Performance Considerations

### Memory Usage

The vectorization process can be memory-intensive, especially for large images or complex conversion parameters. To optimize memory usage:

- Resize very large images before conversion
- For batch processing, limit num_workers to avoid excessive memory usage
- Set color_precision to lower values (4-6) for complex color images

### Execution Time

Conversion time depends on:

1. **Image size**: Larger images take longer to process
2. **Image complexity**: More details and colors increase processing time
3. **Color mode**: "binary" is generally faster than "color"
4. **Mode**: "polygon" is usually faster than "spline"
5. **Parameters**: Higher precision values increase processing time

Typical processing times on modern hardware:
- Small binary diagrams (800×600): 1-3 seconds
- Medium photos (1200×800): 5-15 seconds
- Large complex images (2000×1500): 15-60 seconds

## Changelog (v1.1.0)

### Fixed

- Fixed parameter handling to respect manually specified parameters when auto_optimize=True
- Improved file path handling for more reliable conversion
- Better error messages for common failures

### Added

- Batch processing with parallel execution
- SVG optimization to reduce file size
- Progress tracking for batch operations
- Enhanced error handling and validation

### Enhanced

- More robust preprocessing options
- Better documentation and examples
- Improved temporary file handling

## Contributing

Contributions to img2vector are welcome! Here are some ways you can contribute:

- Report bugs and suggest features
- Improve documentation
- Add examples and tutorials
- Implement new features or fix bugs

## License

MIT License

## Credits

This project wouldn't be possible without:

- [vtracer](https://github.com/visioncortex/vtracer) - The underlying vectorization engine
- [OpenCV](https://opencv.org/) - Used for image preprocessing
- [Pillow](https://python-pillow.org/) - Python Imaging Library fork
