File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const Download = () => {
23
23
}
24
24
const dataURL = canvas . toDataURL ( 'image/png' ) ;
25
25
const link = document . createElement ( 'a' ) ;
26
- link . download = 'output .png' ;
26
+ link . download = 'edited .png' ;
27
27
link . href = dataURL ;
28
28
link . click ( ) ;
29
29
} ;
Original file line number Diff line number Diff line change 45
45
integrity ="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM "
46
46
crossorigin ="anonymous "> </ script >
47
47
< link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css ">
48
+ < style >
49
+ ::selection {
50
+ background-color : # 0D6EFD ;
51
+ color : white;
52
+ }
53
+ </ style >
48
54
< meta name ="google-site-verification " content ="U4gBJvr5HgBdRfu3vdW7EcSEqh9A2TUILHHt7ulAp6E " />
49
55
</ head >
50
56
@@ -83,10 +89,12 @@ <h1><i class="bi bi-card-image"></i> Free Online Image Editor</h1>
83
89
< input type ="range " class ="form-range " id ="sepia " default ="0 " value ="0 " oninput ="Edit() " min ="0 ">
84
90
85
91
< label for ="blur " class ="form-label "> Blur</ label >
86
- < input type ="range " class ="form-range " id ="blur " default ="0 " value ="0 " oninput ="Edit() " min ="0 " max ="25 ">
92
+ < input type ="range " class ="form-range " id ="blur " default ="0 " value ="0 " oninput ="Edit() " min ="0 "
93
+ max ="25 ">
87
94
88
95
< label for ="opacity " class ="form-label "> Opacity</ label >
89
- < input type ="range " class ="form-range " id ="opacity " default ="100 " value ="100 " oninput ="Edit() " min ="0 " max ="100 ">
96
+ < input type ="range " class ="form-range " id ="opacity " default ="100 " value ="100 " oninput ="Edit() "
97
+ min ="0 " max ="100 ">
90
98
91
99
< div class ="text-center my-4 ">
92
100
< button class ="btn btn-outline-primary m-1 " type ="button " disabled id ="export-image-btn "
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const Download = () => {
21
21
}
22
22
const dataURL : any = canvas . toDataURL ( 'image/png' ) ;
23
23
const link : any = document . createElement ( 'a' ) ;
24
- link . download = 'output .png' ;
24
+ link . download = 'edited .png' ;
25
25
link . href = dataURL ;
26
26
link . click ( ) ;
27
27
}
You can’t perform that action at this time.
0 commit comments