Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ The complete list of transformations supported and their usage in ImageKit can b
| format | f |
| radius | r |
| background | bg |
| border | bo |
| border | b |
| rotation | rt |
| blur | bl |
| named | n |
Expand Down
90 changes: 45 additions & 45 deletions src/constants/supportedTransforms.js
Original file line number Diff line number Diff line change
@@ -1,58 +1,58 @@
export default {
"height" : "h",
"width" : "w",
"aspectRatio" : "ar",
"quality" : "q",
"crop" : "c",
"cropMode" : "cm",
"x" : "x",
"y" : "y",
"focus" : "fo",
"format" : "f",
"radius" : "r",
"background" : "bg",
"border" : "bo",
"rotation" : "rt",
"rotate" : "rt",
"blur" : "bl",
"named" : "n",
"overlayImage" : "oi",
"overlayImageAspectRatio" : "oiar",
"height": "h",
"width": "w",
"aspectRatio": "ar",
"quality": "q",
"crop": "c",
"cropMode": "cm",
"x": "x",
"y": "y",
"focus": "fo",
"format": "f",
"radius": "r",
"background": "bg",
"border": "b",
"rotation": "rt",
"rotate": "rt",
"blur": "bl",
"named": "n",
"overlayImage": "oi",
"overlayImageAspectRatio": "oiar",
"overlayImageBackground": "oibg",
"overlayImageBorder": "oib",
"overlayImageDPR": "oidpr",
"overlayImageQuality": "oiq",
"overlayImageCropping": "oic",
"overlayImageTrim" : "oit",
"overlayX" : "ox",
"overlayY" : "oy",
"overlayFocus" : "ofo",
"overlayHeight" : "oh",
"overlayWidth" : "ow",
"overlayText" : "ot",
"overlayTextFontSize" : "ots",
"overlayTextFontFamily" : "otf",
"overlayTextColor" : "otc",
"overlayTextTransparency" : "oa",
"overlayAlpha" : "oa",
"overlayTextTypography" : "ott",
"overlayBackground" : "obg",
"overlayImageTrim": "oit",
"overlayX": "ox",
"overlayY": "oy",
"overlayFocus": "ofo",
"overlayHeight": "oh",
"overlayWidth": "ow",
"overlayText": "ot",
"overlayTextFontSize": "ots",
"overlayTextFontFamily": "otf",
"overlayTextColor": "otc",
"overlayTextTransparency": "oa",
"overlayAlpha": "oa",
"overlayTextTypography": "ott",
"overlayBackground": "obg",
"overlayTextEncoded": "ote",
"overlayTextWidth": "otw",
"overlayTextBackground": "otbg",
"overlayTextPadding": "otp",
"overlayTextInnerAlignment": "otia",
"overlayRadius": "or",
"progressive" : "pr",
"lossless" : "lo",
"trim" : "t",
"metadata" : "md",
"colorProfile" : "cp",
"defaultImage" : "di",
"dpr" : "dpr",
"effectSharpen" : "e-sharpen",
"effectUSM" : "e-usm",
"effectContrast" : "e-contrast",
"effectGray" : "e-grayscale",
"original" : "orig"
"progressive": "pr",
"lossless": "lo",
"trim": "t",
"metadata": "md",
"colorProfile": "cp",
"defaultImage": "di",
"dpr": "dpr",
"effectSharpen": "e-sharpen",
"effectUSM": "e-usm",
"effectContrast": "e-contrast",
"effectGray": "e-grayscale",
"original": "orig"
};