-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModule_Extensions.xojo_code
221 lines (170 loc) · 5.58 KB
/
Module_Extensions.xojo_code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#tag Module
Protected Module Module_Extensions
#tag Method, Flags = &h0
Function FitIn_Canvas(p As Picture, c As DesktopCanvas) As Picture
If p = Nil Then Return Nil
Var Preview As New Picture(c.Width, c.Height)
// -------------------------------------------------------
// scale picture keeping the ratio between x and y
// -------------------------------------------------------
Var CanvasWidth, CanvasHeight, PicWidth, PicHeight, ScaleWidth, ScaleHeight As Int16
Var RatioX, RatioY,PosX, PosY As Double
CanvasWidth = c.width
CanvasHeight = c.Height
PicWidth = p.Width
PicHeight = p.Height
RatioX = CanvasWidth / PicWidth
RatioY = CanvasHeight / PicHeight
If RatioX < RatioY Then
ScaleWidth = PicWidth * RatioY
ScaleHeight = PicHeight * RatioY
PosX = ((CanvasWidth - ScaleWidth)/2) + 10
PosY = 10
Else
ScaleWidth = PicWidth * RatioX
ScaleHeight = PicHeight * RatioX
PosX = 10
PosY = ((CanvasHeight - ScaleHeight)/2) + 10
End If
Preview.Graphics.DrawPicture(p,PosX, PosY, ScaleWidth - 20, ScaleHeight - 20, 0, 0, PicWidth, PicHeight)
Return Preview
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function Get_ImageFromURL(URL As String) As Picture
Dim ucon As New URLConnection
Dim mb As MemoryBlock
Try
mb = ucon.SendSync("GET", URL,30)
Catch err As RuntimeException
Return Nil
End Try
If mb.Size > 0 Then
Return Picture.FromData(mb)
Else
Return Nil
End If
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function PrepareForExport(p As Picture, X As Integer, Y As Integer) As Picture
If p = Nil Then Return Nil
Var Preview As New Picture(X, Y)
// -------------------------------------------------------
// scale picture keeping the ratio between x and y
// -------------------------------------------------------
Var PicWidth, PicHeight, ScaleWidth, ScaleHeight As Int16
Var RatioX, RatioY,PosX, PosY As Double
PicWidth = p.Width
PicHeight = p.Height
RatioX = X / PicWidth
RatioY = Y / PicHeight
If RatioX < RatioY Then
ScaleWidth = PicWidth * RatioY
ScaleHeight = PicHeight * RatioY
PosX = ((X - ScaleWidth)/2) + 10
PosY = 10
Else
ScaleWidth = PicWidth * RatioX
ScaleHeight = PicHeight * RatioX
PosX = 10
PosY = ((Y - ScaleHeight)/2) + 10
End If
Preview.Graphics.DrawPicture(p,PosX, PosY, ScaleWidth - 20, ScaleHeight - 20, 0, 0, PicWidth, PicHeight)
Return Preview
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function Set_BrightnessAndContrast(p As Picture, Brightness As Integer, Contrast As Integer) As Picture
If p = Nil Then Return Nil
Var effect As New BrightnessContrastEffectRaw
Var result As RawBitmap
Var RawImage As RawBitmap = RawBitmapConverter.FromPicture(p)
result = effect.Apply(RawImage, Brightness / 1000.0, Contrast / 1000.0) // even if Range is -1.0 to 1.0 then practical range is far less so we use -0.5 to 0.5 for brightness and -0.6 to 0.6 for contrast
Return RawBitmapConverter.ToPicture(result)
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function Set_ContrastStretch(p As Picture) As Picture
Var result As RawBitmap
Var effect As New ContrastStretchEffectRaw
Var RawImage As RawBitmap = RawBitmapConverter.FromPicture(p)
result = effect.Apply(RawImage)
p = RawBitmapConverter.ToPicture(result)
Return p
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function Set_Grayscale_Average(p As Picture, Optional GrayscaleType As String) As Picture
Var result As RawBitmap
Var effect As New GrayscaleEffectRaw
// effect = New GrayscaleEffectRaw()
Var RawImage As RawBitmap = RawBitmapConverter.FromPicture(p)
Select Case GrayscaleType
Case "NTSC"
result = effect.Apply(RawImage,GrayscaleEffectRaw.NTSC_PAL)
Case "ITUR"
result =effect.Apply(RawImage,GrayscaleEffectRaw.ITU_R)
Case "WeightedAverage"
result = effect.Apply(RawImage,GrayscaleEffectRaw.WEIGHTEDAVERAGE)
Else // Average
result = effect.Apply(RawImage,GrayscaleEffectRaw.AVERAGE)
End Select
p = RawBitmapConverter.ToPicture(result)
Return p
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function Set_Invert(p As Picture) As Picture
Var result As RawBitmap
Var effect As New InvertEffectRaw
Var RawImage As RawBitmap = RawBitmapConverter.FromPicture(p)
result = effect.Apply(RawImage)
p = RawBitmapConverter.ToPicture(result)
Return p
End Function
#tag EndMethod
#tag ViewBehavior
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag EndViewBehavior
End Module
#tag EndModule