Created
November 14, 2014 02:11
-
-
Save blitline-dev/566a7c2af3620fc013f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"application_id": "YOUR_APP_ID", | |
"src": "https://s3.amazonaws.com/img.blitline/sky.jpg", | |
"pre_process": [ | |
{ | |
"job": { | |
"src": "https://s3.amazonaws.com/img.blitline/samples/city.png", | |
"functions": [ | |
{ | |
"name": "composite", | |
"params": { | |
"src": "https://s3.amazonaws.com/img.blitline/samples/circle_crop_mask.png", | |
"composite_op": "CopyOpacityCompositeOp", | |
"as_mask": true, | |
"scale_to_match": true | |
}, | |
"save": { | |
"image_identifier": "MY_COMPOSITED_IMAGE" | |
} | |
} | |
] | |
} | |
} | |
], | |
"functions": [ | |
{ | |
"name": "composite", | |
"params": { | |
"gravity": "CenterGravity", | |
"src": "&MY_COMPOSITED_IMAGE" | |
}, | |
"save": { | |
"image_identifier": "Output of city cropped, composited onto sky" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment