├── .gitignore ├── LICENSE ├── README.md ├── android ├── .project ├── LICENSE ├── assets │ └── README ├── build.xml ├── documentation │ └── index.md ├── example │ └── app.js ├── lib │ ├── README │ └── android-crop-1.0.0-pre.jar ├── manifest ├── platform │ ├── README │ └── android │ │ └── res │ │ ├── drawable-hdpi-v4 │ │ ├── crop__divider.9.png │ │ ├── crop__ic_cancel.png │ │ └── crop__ic_done.png │ │ ├── drawable-mdpi-v4 │ │ ├── crop__divider.9.png │ │ ├── crop__ic_cancel.png │ │ └── crop__ic_done.png │ │ ├── drawable-v21 │ │ └── crop__selectable_background.xml │ │ ├── drawable-xhdpi-v4 │ │ ├── crop__divider.9.png │ │ ├── crop__ic_cancel.png │ │ ├── crop__ic_done.png │ │ └── crop__tile.png │ │ ├── drawable │ │ ├── crop__selectable_background.xml │ │ └── crop__texture.xml │ │ ├── layout │ │ ├── crop__activity_crop.xml │ │ └── crop__layout_done_cancel.xml │ │ ├── values-es │ │ └── crop.xml │ │ ├── values-fr │ │ └── crop.xml │ │ ├── values-ja │ │ └── crop.xml │ │ ├── values-ko │ │ └── crop.xml │ │ ├── values-land │ │ └── crop.xml │ │ ├── values-large-v4 │ │ └── crop.xml │ │ ├── values-se │ │ └── crop.xml │ │ ├── values-v21 │ │ └── crop.xml │ │ ├── values-zh │ │ └── crop.xml │ │ └── values │ │ └── crop.xml ├── src │ └── se │ │ └── hyperlab │ │ └── imagecropper │ │ └── TiImageCropperModule.java └── timodule.xml ├── assets └── README ├── documentation └── index.md ├── example └── app.js └── iphone ├── .gitignore ├── Classes ├── SeHyperlabImagecropperModule.h ├── SeHyperlabImagecropperModule.m ├── SeHyperlabImagecropperModuleAssets.h └── SeHyperlabImagecropperModuleAssets.m ├── README ├── RSKImageCropper ├── CGGeometry+RSKImageCropper.h ├── CGGeometry+RSKImageCropper.m ├── RSKImageCropViewController+Protected.h ├── RSKImageCropViewController.h ├── RSKImageCropViewController.m ├── RSKImageCropper.h ├── RSKImageScrollView.h ├── RSKImageScrollView.m ├── RSKTouchView.h ├── RSKTouchView.m ├── UIApplication+RSKImageCropper.h ├── UIApplication+RSKImageCropper.m ├── UIImage+RSKImageCropper.h └── UIImage+RSKImageCropper.m ├── SeHyperlabImagecropper_Prefix.pch ├── TiImageCropper.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── build.py ├── manifest ├── module.xcconfig ├── platform └── README ├── timodule.xml └── titanium.xcconfig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/README.md -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/.project -------------------------------------------------------------------------------- /android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/LICENSE -------------------------------------------------------------------------------- /android/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/assets/README -------------------------------------------------------------------------------- /android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/build.xml -------------------------------------------------------------------------------- /android/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/documentation/index.md -------------------------------------------------------------------------------- /android/example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/example/app.js -------------------------------------------------------------------------------- /android/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/lib/README -------------------------------------------------------------------------------- /android/lib/android-crop-1.0.0-pre.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/lib/android-crop-1.0.0-pre.jar -------------------------------------------------------------------------------- /android/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/manifest -------------------------------------------------------------------------------- /android/platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/README -------------------------------------------------------------------------------- /android/platform/android/res/drawable-hdpi-v4/crop__divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-hdpi-v4/crop__divider.9.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-hdpi-v4/crop__ic_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-hdpi-v4/crop__ic_cancel.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-hdpi-v4/crop__ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-hdpi-v4/crop__ic_done.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-mdpi-v4/crop__divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-mdpi-v4/crop__divider.9.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-mdpi-v4/crop__ic_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-mdpi-v4/crop__ic_cancel.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-mdpi-v4/crop__ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-mdpi-v4/crop__ic_done.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-v21/crop__selectable_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-v21/crop__selectable_background.xml -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xhdpi-v4/crop__divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-xhdpi-v4/crop__divider.9.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xhdpi-v4/crop__ic_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-xhdpi-v4/crop__ic_cancel.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xhdpi-v4/crop__ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-xhdpi-v4/crop__ic_done.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable-xhdpi-v4/crop__tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable-xhdpi-v4/crop__tile.png -------------------------------------------------------------------------------- /android/platform/android/res/drawable/crop__selectable_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable/crop__selectable_background.xml -------------------------------------------------------------------------------- /android/platform/android/res/drawable/crop__texture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/drawable/crop__texture.xml -------------------------------------------------------------------------------- /android/platform/android/res/layout/crop__activity_crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/layout/crop__activity_crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/layout/crop__layout_done_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/layout/crop__layout_done_cancel.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-es/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-es/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-fr/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-fr/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-ja/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-ja/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-ko/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-ko/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-land/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-land/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-large-v4/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-large-v4/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-se/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-se/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-v21/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-v21/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values-zh/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values-zh/crop.xml -------------------------------------------------------------------------------- /android/platform/android/res/values/crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/platform/android/res/values/crop.xml -------------------------------------------------------------------------------- /android/src/se/hyperlab/imagecropper/TiImageCropperModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/src/se/hyperlab/imagecropper/TiImageCropperModule.java -------------------------------------------------------------------------------- /android/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/android/timodule.xml -------------------------------------------------------------------------------- /assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/assets/README -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/example/app.js -------------------------------------------------------------------------------- /iphone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/.gitignore -------------------------------------------------------------------------------- /iphone/Classes/SeHyperlabImagecropperModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/Classes/SeHyperlabImagecropperModule.h -------------------------------------------------------------------------------- /iphone/Classes/SeHyperlabImagecropperModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/Classes/SeHyperlabImagecropperModule.m -------------------------------------------------------------------------------- /iphone/Classes/SeHyperlabImagecropperModuleAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/Classes/SeHyperlabImagecropperModuleAssets.h -------------------------------------------------------------------------------- /iphone/Classes/SeHyperlabImagecropperModuleAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/Classes/SeHyperlabImagecropperModuleAssets.m -------------------------------------------------------------------------------- /iphone/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/README -------------------------------------------------------------------------------- /iphone/RSKImageCropper/CGGeometry+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/CGGeometry+RSKImageCropper.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/CGGeometry+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/CGGeometry+RSKImageCropper.m -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKImageCropViewController+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKImageCropViewController+Protected.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKImageCropViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKImageCropViewController.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKImageCropViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKImageCropViewController.m -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKImageCropper.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKImageScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKImageScrollView.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKImageScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKImageScrollView.m -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKTouchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKTouchView.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/RSKTouchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/RSKTouchView.m -------------------------------------------------------------------------------- /iphone/RSKImageCropper/UIApplication+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/UIApplication+RSKImageCropper.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/UIApplication+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/UIApplication+RSKImageCropper.m -------------------------------------------------------------------------------- /iphone/RSKImageCropper/UIImage+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/UIImage+RSKImageCropper.h -------------------------------------------------------------------------------- /iphone/RSKImageCropper/UIImage+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/RSKImageCropper/UIImage+RSKImageCropper.m -------------------------------------------------------------------------------- /iphone/SeHyperlabImagecropper_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/SeHyperlabImagecropper_Prefix.pch -------------------------------------------------------------------------------- /iphone/TiImageCropper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/TiImageCropper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iphone/TiImageCropper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/TiImageCropper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iphone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/build.py -------------------------------------------------------------------------------- /iphone/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/manifest -------------------------------------------------------------------------------- /iphone/module.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/module.xcconfig -------------------------------------------------------------------------------- /iphone/platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/platform/README -------------------------------------------------------------------------------- /iphone/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/timodule.xml -------------------------------------------------------------------------------- /iphone/titanium.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperlab/TiImageCropper/HEAD/iphone/titanium.xcconfig --------------------------------------------------------------------------------