Skip to main content

A tool for generating 3D device mockups from a screenshot.

Project description

mockupgen

A tool for generating 3D device mockups from a screenshot.


Installation

pip install mockupgen

Alternatively, from source:

git clone https://github.com/rmenon1008/mockupgen.git
cd mockupgen
pip install .

Usage

mockupgen [OPTION...] screenshot_file

OPTION:
  -t TEMPLATE                  template name or number
  -o OUTFILE                   output file name (use extension to specify format)
  -w WIDTH                     output width (will upscale if requested)
  --crop                       crop instead of stretching the screenshot to fit the mockup
  --brightness B               screen brightness adjustment (default: 1.0)
  --contrast C                 screen contrast adjustment (default: 1.0)
  --list                       list available templates
  --custom-template-dir DIR    use a custom directory of templates (see README.md)

Templates

A number of templates come preinstalled with the tool. They are all based on mockups created by Anthony Boyd. You can see the available templates with mockupgen --list.

Custom templates

Instead of using the preinstalled templates, you can supply your own by specifying --custom-template-dir. The directory should contain an info.json file and all the required images. It should look something like this:

// info.json
// Note: All paths are relative to this file

[
    {
        // Required fields
        "name": "Example Template",
        "base_file": "base.png",   // The device template image
        "screen_points": [         // The pixel locations of the 4 corners of the screen
            [896, 224],            // Starts in the top left and goes counter clockwise
            [896, 654],
            [1471, 985],
            [1471, 555]
        ],

        // Only one of the two options below must be specified
        "mask_file": "mask.png",   // An image used to mask the screenshot (alpha channel used)
        // OR
        "mask_aspect_ratio": 1.0,  // Aspect ratio to mask the screenshot (assumes rectangular)

        // Optional fields
        "brightness": 1.0,         // Brightness adjustment of the screenshot
        "contrast": 1.0            // Contrast adjustment of the screenshot
    },
    ...
]

About

Mockups typically require expensive and slow image processing tools to create. While these can create very realistic mockups, they're very manual and usually overkill for the blog post thumbnail I'm trying to create.

The tool uses opencv to mask, warp and composite screenshots onto a template. Right now, it doesn't do any lighting or shadow effects.

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

mockupgen-0.0.3.tar.gz (25.8 MB view hashes)

Uploaded Source

Built Distribution

mockupgen-0.0.3-py3-none-any.whl (25.8 MB view hashes)

Uploaded Python 3

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