{"id":51187815,"url":"https://github.com/brownsoo/heimageeditor","last_synced_at":"2026-06-27T12:01:48.023Z","repository":{"id":361735023,"uuid":"810304397","full_name":"brownsoo/HEImageEditor","owner":"brownsoo","description":"SImple Image Editor \u0026 Picker","archived":false,"fork":false,"pushed_at":"2026-06-08T13:31:07.000Z","size":284,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-08T15:21:21.553Z","etag":null,"topics":["imageeditor","imagepicker"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/brownsoo.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-04T12:41:00.000Z","updated_at":"2026-06-08T13:23:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/brownsoo/HEImageEditor","commit_stats":null,"previous_names":["brownsoo/heimageeditor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brownsoo/HEImageEditor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brownsoo%2FHEImageEditor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brownsoo%2FHEImageEditor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brownsoo%2FHEImageEditor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brownsoo%2FHEImageEditor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brownsoo","download_url":"https://codeload.github.com/brownsoo/HEImageEditor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brownsoo%2FHEImageEditor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34852282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"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":["imageeditor","imagepicker"],"created_at":"2026-06-27T12:01:47.410Z","updated_at":"2026-06-27T12:01:48.010Z","avatar_url":"https://github.com/brownsoo.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HEImageEditor\n\n\u003e Now developing..\n\nHEImageEditor was created based on [ZLImageEditor](https://github.com/longitachi/ZLImageEditor), [YPImagePicker](https://github.com/Yummypets/YPImagePicker).\nI improved functionality and added several features✨.\n\n\n### \u003ca id=\"Editing Features\"\u003e\u003c/a\u003e이미지 편집 \n- Free draw line.\n- Free draw mosaic line.\n- Crop \u0026 Rotate.\n- Image sticker\n  - Automatically attach stickers to your face through facial recognition.✨\n- Text sticker\n  - Custom text color \u0026 Background color✨\n- Mosaic sticker ✨ \n  - You can attach the mosaic effect like a sticker and change its size and position.\n- Filter (Support custom filters).\n- Adjust (Brightness, Contrast, Saturation).\n- Multiple Images supports.✨\n\n### \u003ca id=\"Picking Features\"\u003e\u003c/a\u003e이미지 또는 비디오 피커\n- Pick media source\n\n\n### \u003ca id=\"Requirements\"\u003e\u003c/a\u003eRequirements\n * Swift 5.8+\n * Xcode 15+\n * Target iOS 14.0\n\n### \u003ca id=\"Usage\"\u003e\u003c/a\u003eUsage\n```swift\nvar imageStickers: [HEImageSticker] = []\n// 에디터 세팅 \nfunc configImageEditor() {\n    // 이미지 스티커를 사용하려면, HEImageStickerTray 를 구현해줘야 한다.\n    let stickerTray = HEImageStickerTrayView()\n    // 이미지 스티커용 이미지 데이터 소스 제공 \n    stickerTray.dataSource = self\n    \n    imageStickers.append(HEImageSticker.faceAiIcon) // 얼굴인식 스티커 추가\n    imageStickers.append(HEImageSticker.mosaicIcon) // 모자이크 스티커 추가 \n    imageStickers.append(contentsOf: (1...18).map { (v) -\u003e String in\n        \"imageSticker\" + String(v)\n    }.compactMap { name in\n        HEImageSticker(id: name) {\n            UIImage(named: name) ?? UIImage()\n        }\n    })\n    \n    // 편집기 구성 \n    HEConfiguration.default()\n        .clipRatios([.origin, .custom, .wh1x1])\n        .imageStickerTray(stickerTray)\n}\n```\n\n```swift\n// 단일 이미지를 편집 \nfunc startEditSingleImage(_ image: UIImage, editState: HEEditState?) {\n    HEEditImageViewController.showImageEditor(\n        parent: self,\n        image: image,\n        editState: editState,\n        delegate: self,\n        topToolViewBuilder: makeTopToolBuilder(),\n        clipImageBottomViewBuilder: { clipView in // 자르기\u0026회전 이외의 뷰를 추가할 수 있음.\n            let bottom = HEClipBottomView()\n            bottom.cancelClickListener = { [weak clipView] in clipView?.cancelEdit() }\n            bottom.doneClickListener = { [weak clipView] in clipView?.doneEdit() }\n            bottom.revertClickListener = { [weak clipView] in clipView?.revertEdit() }\n            return (bottom, HEClipBottomView.estimateHeight)\n        }\n    )\n}\n```\n```swift\n// 다수 이미지를 편집하고 싶다면, 이미지 스토어 생성 \nlazy var imageStore = HESimpleImageStore()\n\nfunc startEditMultipleImages(_ images: [HEImage]) {\n    imageStore.clearAll()\n    imageStore.addHEImages(images)\n    let vc = HEImageEditorViewController(imageStore: imageStore,\n                                        imageCache: imageStore,\n                                        stickerDataSource: self)\n    \n    vc.modalPresentationStyle = .overFullScreen\n    present(vc, animated: true)\n}\n```\n```swift\n// 이미지/비디오 피커 열기 (전체 화면 권장)\nfunc openPicker() {\n    let picker = HEImagePicker()\n    picker.pickerDelegate = self\n    picker.modalPresentationStyle = .fullScreen\n    present(picker, animated: true)\n}\n```\n\n### \u003ca id=\"Demo\"\u003e\u003c/a\u003eDemo\n`Demo/HEImageEditorDemo.xcodeproj` 를 열면 시뮬레이터에서 에디터와 피커를 바로 확인할 수 있습니다.\n모든 편집 툴, 이모지·얼굴 AI·모자이크 이미지 스티커, 사진 피커가 구성되어 있습니다.\n자세한 실행 방법은 [Demo/README.md](Demo/README.md) 를 참고하세요.\n\n### \u003ca id=\"Languages\"\u003e\u003c/a\u003eLanguages\n🇺🇸 English, 🇰🇷 Korean\n\n\n### Swift Package Manager\n1. Select File \u003e Swift Packages \u003e Add Package Dependency. Enter https://github.com/brownsoo/HEImageEditor.git in the \"Choose Package Repository\" dialog.\n2. After Xcode checking out the source and resolving the version, you can choose the \"HEImageEditor\" library and add it to your app target.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrownsoo%2Fheimageeditor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrownsoo%2Fheimageeditor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrownsoo%2Fheimageeditor/lists"}