|
@@ -0,0 +1,43 @@
|
|
|
+import React from 'react';
|
|
|
+import { Button, Space } from 'antd';
|
|
|
+
|
|
|
+const FunctionArea = () => {
|
|
|
+ return (
|
|
|
+ <Space>
|
|
|
+ <Button>Add L Mark</Button>
|
|
|
+ <Button>Add R Mark</Button>
|
|
|
+ <Button>Delete Selected Mark</Button>
|
|
|
+ <Button>Horizontal Flip</Button>
|
|
|
+ <Button>Vertical Flip</Button>
|
|
|
+ <Button>Rotate Counterclockwise 90°</Button>
|
|
|
+ <Button>Rotate Clockwise 90°</Button>
|
|
|
+ <Button>Rotate Any Angle</Button>
|
|
|
+ <Button>Crop Image</Button>
|
|
|
+ <Button>Delete Digital Mask</Button>
|
|
|
+ <Button>Adjust Brightness and Contrast</Button>
|
|
|
+ <Button>Crop Selected Area</Button>
|
|
|
+ <Button>Delete Mask</Button>
|
|
|
+ <Button>Image Comparison</Button>
|
|
|
+ <Button>Invert Contrast</Button>
|
|
|
+ <Button>1x1 Layout</Button>
|
|
|
+ <Button>1x2 Layout</Button>
|
|
|
+ <Button>2x2 Layout</Button>
|
|
|
+ <Button>4x4 Layout</Button>
|
|
|
+ <Button>Magnifier</Button>
|
|
|
+ <Button>Fit Size</Button>
|
|
|
+ <Button>Original Size</Button>
|
|
|
+ <Button>Zoom Image</Button>
|
|
|
+ <Button>Reset Cursor</Button>
|
|
|
+ <Button>Pan</Button>
|
|
|
+ <Button>Invert Image</Button>
|
|
|
+ <Button>Reset Image</Button>
|
|
|
+ <Button>Snapshot</Button>
|
|
|
+ <Button>Advanced Processing</Button>
|
|
|
+ <Button>Musician</Button>
|
|
|
+ <Button>Image Measurement</Button>
|
|
|
+ <Button>More</Button>
|
|
|
+ </Space>
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+export default FunctionArea;
|