Class PostDrawingResizeRequest
- java.lang.Object
-
- com.aspose.cad.cloud.model.requests.PostDrawingResizeRequest
-
public class PostDrawingResizeRequest extends Object
Class that holds parameters for PostDrawingResize request invocation.
-
-
Field Summary
Fields Modifier and Type Field Description byte[]
drawingData
Input drawingInteger
newHeight
New height.Integer
newWidth
New width.String
outPath
Path to updated file (if this is empty, response contains streamed file).String
outputFormat
Resulting file format.String
storage
Your Aspose Cloud Storage name.
-
-
-
Field Detail
-
drawingData
public byte[] drawingData
Input drawing
-
outputFormat
public String outputFormat
Resulting file format.
-
newWidth
public Integer newWidth
New width.
-
newHeight
public Integer newHeight
New height.
-
outPath
public String outPath
Path to updated file (if this is empty, response contains streamed file).
-
storage
public String storage
Your Aspose Cloud Storage name.
-
-
Constructor Detail
-
PostDrawingResizeRequest
public PostDrawingResizeRequest(byte[] drawingData, String outputFormat, Integer newWidth, Integer newHeight, String outPath, String storage)
Initializes a new instance of the PostDrawingResizeRequest class.- Parameters:
drawingData
- Input drawingoutputFormat
- Resulting file format.newWidth
- New width.newHeight
- New height.outPath
- Path to updated file (if this is empty, response contains streamed file).storage
- Your Aspose Cloud Storage name.
-
-