We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98791d7 commit 5cc1f7dCopy full SHA for 5cc1f7d
1 file changed
README.md
@@ -116,16 +116,16 @@ You can pass any custom options to the task payload via the special `Options` pr
116
117
```c#
118
var task = new ConvertCreateRequest
119
- {
120
- Input = "import_example_1",
121
- Input_Format = "pdf",
122
- Output_Format = "jpg",
123
- Options = new Dictionary<string, object> {
124
- { "width": 800 },
125
- { "height": 600 },
126
- { "fit": "max" }
127
- }
128
+{
+ Input = "import_example_1",
+ Input_Format = "pdf",
+ Output_Format = "jpg",
+ Options = new Dictionary<string, object> {
+ { "width", 800 },
+ { "height", 600 },
+ { "fit", "max" }
+ }
+};
129
```
130
You can use the [Job Builder](https://cloudconvert.com/api/v2/jobs/builder) to see the available options.
131
0 commit comments