{"id":17436091,"url":"https://github.com/neuron-nexus/go-image-upscaler","last_synced_at":"2026-01-22T20:08:43.661Z","repository":{"id":257811124,"uuid":"867803128","full_name":"neuron-nexus/go-image-upscaler","owner":"neuron-nexus","description":"Simple way to upscale image with Go (Golang)","archived":false,"fork":false,"pushed_at":"2024-10-04T21:04:03.000Z","size":8,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T11:11:09.228Z","etag":null,"topics":["golang","golang-library","golang-package","image","image-processing","upscale","upscaler","upscalerimage","upscaling"],"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/neuron-nexus.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":"2024-10-04T18:47:16.000Z","updated_at":"2024-11-07T16:12:34.000Z","dependencies_parsed_at":"2024-10-05T20:55:20.648Z","dependency_job_id":null,"html_url":"https://github.com/neuron-nexus/go-image-upscaler","commit_stats":null,"previous_names":["neuron-nexus/go-image-upscaler"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/neuron-nexus/go-image-upscaler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuron-nexus%2Fgo-image-upscaler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuron-nexus%2Fgo-image-upscaler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuron-nexus%2Fgo-image-upscaler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuron-nexus%2Fgo-image-upscaler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neuron-nexus","download_url":"https://codeload.github.com/neuron-nexus/go-image-upscaler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neuron-nexus%2Fgo-image-upscaler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28670366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T19:36:09.361Z","status":"ssl_error","status_checked_at":"2026-01-22T19:36:05.567Z","response_time":144,"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":["golang","golang-library","golang-package","image","image-processing","upscale","upscaler","upscalerimage","upscaling"],"created_at":"2024-10-17T10:02:10.598Z","updated_at":"2026-01-22T20:08:43.642Z","avatar_url":"https://github.com/neuron-nexus.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Neuron Nexus Image Upscale\n\nNeuron Nexus Image Upscale is a Go framework for upscaling images. It allows you to frame the original image to fit a custom aspect ratio. The framework allows you to place the image in a frame with the original color (white) or in a frame of a custom color. Images can be imported in .png, .jpg and .gif. Export is available in .png and .jpg.\n\n## Installation\n\n\n\n```bash\ngo get -u github.com/neuron-nexus/go-image-upscaler\n```\n\n## Usage (v1.0.1)\n\n```go\npackage main\n\nimport (\n\t\"image/color\"\n\t\"log\"\n\t\"os\"\n\n\timageupscaler \"github.com/neuron-nexus/go-image-upscaler\"\n)\n\nfunc main() {\n\tupscaler := imageupscaler.New()\n\terr := upscaler.SetImage(\"./test.jpg\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tfile, err := os.Create(\"./test2.jpg\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer file.Close()\n\n\t//upscaler.Upscale(3, 2)\n\tupscaler.UpscaleWithColor(3, 2, color.RGBA{172, 25, 135, 255})\n\tupscaler.Render(imageupscaler.JPG, file, nil)\n}\n\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneuron-nexus%2Fgo-image-upscaler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneuron-nexus%2Fgo-image-upscaler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneuron-nexus%2Fgo-image-upscaler/lists"}