{"id":21328452,"url":"https://github.com/mrcook/scrconv","last_synced_at":"2025-10-24T14:36:32.726Z","repository":{"id":67278618,"uuid":"404319993","full_name":"mrcook/scrconv","owner":"mrcook","description":"CLI app to convert ZX Spectrum 8-bit SCR images to PNG/GIF/JPG","archived":false,"fork":false,"pushed_at":"2023-12-27T19:39:48.000Z","size":27,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-14T23:42:32.627Z","etag":null,"topics":["8bit","cli","converter","gif","golang","jpg","png","scr","zx-spectrum"],"latest_commit_sha":null,"homepage":"","language":"Go","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/mrcook.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}},"created_at":"2021-09-08T11:22:59.000Z","updated_at":"2024-04-20T16:41:57.000Z","dependencies_parsed_at":"2023-12-27T14:30:29.617Z","dependency_job_id":"d8c03a7c-a03b-446e-9292-2c17ee243760","html_url":"https://github.com/mrcook/scrconv","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mrcook/scrconv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrcook%2Fscrconv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrcook%2Fscrconv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrcook%2Fscrconv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrcook%2Fscrconv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrcook","download_url":"https://codeload.github.com/mrcook/scrconv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrcook%2Fscrconv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272355463,"owners_count":24920110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-27T02:00:09.397Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["8bit","cli","converter","gif","golang","jpg","png","scr","zx-spectrum"],"created_at":"2024-11-21T21:29:06.281Z","updated_at":"2025-10-04T16:23:06.135Z","avatar_url":"https://github.com/mrcook.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# scrconv - ZX Spectrum SCR converter\n\nA CLI program for converting ZX Spectrum SCR files to normal image formats\nsuch as PNG, GIF, and JPG.\n\n## Usage\n\nOnce the program is installed (see below) a SCR file can be converted with\nthe following command:\n\n    ./scrconv -scr=\"/path/to/game.scr\"\n\nBy default `format=png`, `scale=1` and `border=true`, so a 320x240 PNG image is\ncreated in the same directory as the SCR file, with the filename `game.png`.\n\n    Usage of ./scrconv:\n      -scr string\n            Input .SCR filename\n      -format string\n            Image format: gif, jpg, png (default \"png\")\n      -scale int\n            Scale factor, max: 4 (default 1)\n      -border\n            Add a border to the image (default true)\n      -border-colour int\n            Border Colour, values: 0 - 15 (default: 0)\n      -auto-border\n            EXPERIMENTAL: Auto Detect Border Colour\n      -v\tShow version number\n\n### Scale\n\nThe scaling generates an image in one of the following resolutions:\n\n    scale |   size   | + border\n    ------+----------+----------\n      1   |  256x192 |  320x240 (default)\n      2   |  512x384 |  640x480\n      3   |  768x576 |  960x720\n      4   | 1024x768 | 1280x960\n\n### Border Colour\n\nWhen the `border` option is enabled, setting a `border-colour` will change\nthe colour of the border. The value should be one of the 16 ZX Spectrum\nnormal/bright colours; a value between 0-15. The default colour is black.\n\n     # | Colour     |  #  | Colour\n    ---+------------+-----+---------------\n     0 | Black      |   8 | Black\n     1 | Blue       |   9 | Bright Blue\n     2 | Red        |  10 | Bright Red\n     3 | Magenta    |  11 | Bright Magenta\n     4 | Green      |  12 | Bright Green\n     5 | Cyan       |  13 | Bright Cyan\n     6 | Yellow     |  14 | Bright Yellow\n     7 | White      |  15 | Bright White\n\n**EXPERIMENTAL**\n\nWhen setting the `auto-border` the border colour will be auto-detected based on\nthe most common colour in the image. This setting overrides any value given in\nthe `border-colour`.\n\n\n## Installation\n\n    go install github.com/mrcook/scrconv/cmd/scrconv@latest\n\nTo install the program after manually cloning the repository:\n\n    cd scrconv\n    go install ./cmd/scrconv\n\n\n## LICENSE\n\nCopyright (c) 2021-2023 Michael R. Cook. All rights reserved.\n\nThis work is licensed under the terms of the MIT license.\nFor a copy, see \u003chttps://opensource.org/licenses/MIT\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrcook%2Fscrconv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrcook%2Fscrconv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrcook%2Fscrconv/lists"}