├── .gitignore
├── Image_Effects.dpr
├── Image_Effects.dproj
├── Image_Effects_Icon.ico
├── LICENSE
├── README.md
├── UnitAbout.fmx
├── UnitAbout.pas
├── UnitMain.Windows.fmx
├── UnitMain.fmx
└── UnitMain.pas
/.gitignore:
--------------------------------------------------------------------------------
1 | # Uncomment these types if you want even more clean repository. But be careful.
2 | # It can make harm to an existing project source. Read explanations below.
3 | #
4 | # Resource files are binaries containing manifest, project icon and version info.
5 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6 | #*.res
7 | #
8 | # Type library file (binary). In old Delphi versions it should be stored.
9 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10 | #*.tlb
11 | #
12 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13 | # Uncomment this if you are not using diagrams or use newer Delphi version.
14 | #*.ddp
15 | #
16 | # Visual LiveBindings file. Added in Delphi XE2.
17 | # Uncomment this if you are not using LiveBindings Designer.
18 | #*.vlb
19 | #
20 | # Deployment Manager configuration file for your project. Added in Delphi XE2.
21 | # Uncomment this if it is not mobile development and you do not use remote debug feature.
22 | #*.deployproj
23 | #
24 | # C++ object files produced when C/C++ Output file generation is configured.
25 | # Uncomment this if you are not using external objects (zlib library for example).
26 | #*.obj
27 | #
28 |
29 | # Delphi compiler-generated binaries (safe to delete)
30 | *.exe
31 | *.dll
32 | *.bpl
33 | *.bpi
34 | *.dcp
35 | *.so
36 | *.apk
37 | *.drc
38 | *.map
39 | *.dres
40 | *.rsm
41 | *.tds
42 | *.dcu
43 | *.lib
44 | *.a
45 | *.o
46 | *.ocx
47 |
48 | # Delphi autogenerated files (duplicated info)
49 | *.cfg
50 | *.hpp
51 | *Resource.rc
52 |
53 | # Delphi local files (user-specific info)
54 | *.local
55 | *.identcache
56 | *.projdata
57 | *.tvsconfig
58 | *.dsk
59 |
60 | # Delphi history and backups
61 | __history/
62 | __recovery/
63 | *.~*
64 |
65 | # Castalia statistics file (since XE7 Castalia is distributed with Delphi)
66 | *.stat
67 |
--------------------------------------------------------------------------------
/Image_Effects.dpr:
--------------------------------------------------------------------------------
1 | program Image_Effects;
2 |
3 | uses
4 | System.StartUpCopy,
5 | FMX.Forms,
6 | UnitMain in 'UnitMain.pas' {FormMain},
7 | UnitAbout in 'UnitAbout.pas' {FormAbout};
8 |
9 | {$R *.res}
10 |
11 | begin
12 | Application.Initialize;
13 | Application.CreateForm(TFormMain, FormMain);
14 | Application.Run;
15 | end.
16 |
--------------------------------------------------------------------------------
/Image_Effects.dproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {96A8AD4C-AEFD-4B04-AAF9-7286DE12691A}
4 | 18.8
5 | FMX
6 | Image_Effects.dpr
7 | True
8 | Release
9 | Win32
10 | 32787
11 | Application
12 |
13 |
14 | true
15 |
16 |
17 | true
18 | Base
19 | true
20 |
21 |
22 | true
23 | Base
24 | true
25 |
26 |
27 | true
28 | Base
29 | true
30 |
31 |
32 | true
33 | Base
34 | true
35 |
36 |
37 | true
38 | Base
39 | true
40 |
41 |
42 | true
43 | Base
44 | true
45 |
46 |
47 | true
48 | Cfg_1
49 | true
50 | true
51 |
52 |
53 | true
54 | Base
55 | true
56 |
57 |
58 | true
59 | Cfg_2
60 | true
61 | true
62 |
63 |
64 | true
65 | Cfg_2
66 | true
67 | true
68 |
69 |
70 | true
71 | Cfg_2
72 | true
73 | true
74 |
75 |
76 | true
77 | true
78 | true
79 | true
80 | true
81 | System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)
82 | true
83 | $(BDS)\bin\delphi_PROJECTICNS.icns
84 | true
85 | true
86 | true
87 | Image_Effects
88 | true
89 | $(BDS)\bin\delphi_PROJECTICON.ico
90 | .\$(Platform)\$(Config)
91 | .\$(Platform)\$(Config)
92 | false
93 | false
94 | false
95 | false
96 | false
97 |
98 |
99 | android-support-v4.dex.jar;cloud-messaging.dex.jar;fmx.dex.jar;google-analytics-v2.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar;google-play-services.dex.jar
100 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png
101 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png
102 | $(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png
103 | FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;CustomIPTransport;dsnap;IndyIPServer;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;dsnapxml;bindcompfmx;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDAC;inet;soapmidas;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)
104 | $(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png
105 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png
106 | true
107 | Debug
108 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png
109 | $(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png
110 | $(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png
111 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png
112 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=preferExternal;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=
113 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_24x24.png
114 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_36x36.png
115 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_48x48.png
116 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_72x72.png
117 | $(BDS)\bin\Artwork\Android\FM_NotificationIcon_96x96.png
118 |
119 |
120 | package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=preferExternal;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=
121 | Debug
122 | true
123 | true
124 | Base
125 | true
126 | android-support-v4.dex.jar;cloud-messaging.dex.jar;fmx.dex.jar;google-analytics-v2.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar;google-play-services.dex.jar
127 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png
128 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png
129 | $(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png
130 | FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;CustomIPTransport;dsnap;IndyIPServer;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;dsnapxml;bindcompfmx;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDAC;inet;soapmidas;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage);$(DCC_UsePackage)
131 | $(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png
132 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png
133 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png
134 | $(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png
135 | $(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png
136 | $(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png
137 |
138 |
139 | true
140 | Base
141 | true
142 | FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;FireDACPgDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapServer;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;DBXOracleDriver;CustomIPTransport;dsnap;IndyIPServer;fmxase;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;inetdbxpress;dsnapxml;FireDACASADriver;bindcompfmx;FireDACODBCDriver;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;inetdb;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;DBXMySQLDriver;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDACMSSQLDriver;FireDAC;DBXInformixDriver;DataSnapServerMidas;DBXFirebirdDriver;inet;fmxobj;FireDACMySQLDriver;soapmidas;DBXSybaseASADriver;FireDACOracleDriver;fmxdae;RESTComponents;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage);$(DCC_UsePackage)
143 | true
144 |
145 |
146 | true
147 | $(BDS)\bin\default_app.manifest
148 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)
149 | FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;FireDACPgDriver;fmx;IndySystem;frxe21;TeeDB;tethering;vclib;DBXInterBaseDriver;DataSnapClient;DataSnapServer;DataSnapCommon;frx21;DataSnapProviderClient;DBXSybaseASEDriver;DbxCommonDriver;vclimg;dbxcds;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vcldb;vcldsnap;fmxFireDAC;DBXDb2Driver;DBXOracleDriver;CustomIPTransport;vclribbon;dsnap;IndyIPServer;fmxase;vcl;IndyCore;DBXMSSQLDriver;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;CodeSiteExpressPkg;DataSnapFireDAC;FireDACDBXDriver;soapserver;inetdbxpress;dsnapxml;FireDACInfxDriver;FireDACDb2Driver;adortl;FireDACASADriver;bindcompfmx;FireDACODBCDriver;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;inetdb;frxTee21;Tee;DBXOdbcDriver;frxDB21;vclFireDAC;xmlrtl;DataSnapNativeClient;svnui;ibxpress;IndyProtocols;DBXMySQLDriver;FireDACCommonDriver;bindengine;vclactnband;bindcompdbx;soaprtl;FMXTee;TeeUI;bindcompvcl;vclie;FireDACADSDriver;vcltouch;emsclient;VCLRESTComponents;FireDACMSSQLDriver;FireDAC;VclSmp;DBXInformixDriver;Intraweb;DataSnapConnectors;DataSnapServerMidas;dsnapcon;DBXFirebirdDriver;inet;fmxobj;FireDACMySQLDriver;soapmidas;vclx;svn;DBXSybaseASADriver;ClockLabel;FireDACOracleDriver;fmxdae;RESTComponents;FireDACMSAccDriver;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)
150 | 1033
151 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName)
152 | true
153 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png
154 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png
155 |
156 |
157 | true
158 | $(BDS)\bin\default_app.manifest
159 | Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)
160 | FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;FireDACPgDriver;fmx;IndySystem;TeeDB;tethering;vclib;DBXInterBaseDriver;DataSnapClient;DataSnapServer;DataSnapCommon;DataSnapProviderClient;DBXSybaseASEDriver;DbxCommonDriver;vclimg;dbxcds;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vcldb;vcldsnap;fmxFireDAC;DBXDb2Driver;DBXOracleDriver;CustomIPTransport;vclribbon;dsnap;IndyIPServer;fmxase;vcl;IndyCore;DBXMSSQLDriver;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;inetdbxpress;dsnapxml;FireDACInfxDriver;FireDACDb2Driver;adortl;FireDACASADriver;bindcompfmx;FireDACODBCDriver;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;inetdb;Tee;DBXOdbcDriver;vclFireDAC;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;DBXMySQLDriver;FireDACCommonDriver;bindengine;vclactnband;bindcompdbx;soaprtl;FMXTee;TeeUI;bindcompvcl;vclie;FireDACADSDriver;vcltouch;emsclient;VCLRESTComponents;FireDACMSSQLDriver;FireDAC;VclSmp;DBXInformixDriver;Intraweb;DataSnapConnectors;DataSnapServerMidas;dsnapcon;DBXFirebirdDriver;inet;fmxobj;FireDACMySQLDriver;soapmidas;vclx;DBXSybaseASADriver;FireDACOracleDriver;fmxdae;RESTComponents;FireDACMSAccDriver;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)
161 | 1033
162 | CompanyName=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName)
163 | true
164 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png
165 | $(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png
166 |
167 |
168 | DEBUG;$(DCC_Define)
169 | true
170 | false
171 | true
172 | true
173 | true
174 |
175 |
176 | false
177 |
178 |
179 | false
180 | RELEASE;$(DCC_Define)
181 | 0
182 | 0
183 |
184 |
185 | true
186 | Cfg_2
187 | true
188 | Debug
189 |
190 |
191 | true
192 | None
193 | CompanyName=DelphiUz;FileVersion=1.0.0.0;InternalName=;LegalCopyright=(c) Abduraimov Mo'minjon's Software;LegalTrademarks=;OriginalFilename=Image_Effects;ProductName=Image Effects;ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName)
194 | true
195 | 1033
196 | true
197 | Debug
198 |
199 |
200 | Debug
201 |
202 |
203 |
204 | MainSource
205 |
206 |
207 |
208 | fmx
209 |
210 |
211 |
212 | fmx
213 |
214 |
215 | Cfg_2
216 | Base
217 |
218 |
219 | Base
220 |
221 |
222 | Cfg_1
223 | Base
224 |
225 |
226 |
227 | Delphi.Personality.12
228 | Application
229 |
230 |
231 |
232 | Image_Effects.dpr
233 |
234 |
235 | Embarcadero C++Builder Office 2000 Servers Package
236 | Embarcadero C++Builder Office XP Servers Package
237 | Microsoft Office 2000 Sample Automation Server Wrapper Components
238 | Microsoft Office XP Sample Automation Server Wrapper Components
239 |
240 |
241 |
242 |
243 |
244 | true
245 |
246 |
247 |
248 |
249 | Image_Effects.exe
250 | true
251 |
252 |
253 |
254 |
255 | true
256 |
257 |
258 |
259 |
260 | true
261 |
262 |
263 |
264 |
265 | true
266 |
267 |
268 |
269 |
270 | true
271 |
272 |
273 |
274 |
275 | Image_Effects.exe
276 | true
277 |
278 |
279 |
280 |
281 | 1
282 |
283 |
284 | Contents\MacOS
285 | 1
286 |
287 |
288 | 0
289 |
290 |
291 |
292 |
293 | classes
294 | 1
295 |
296 |
297 | classes
298 | 1
299 |
300 |
301 |
302 |
303 | res\xml
304 | 1
305 |
306 |
307 | res\xml
308 | 1
309 |
310 |
311 |
312 |
313 | library\lib\armeabi-v7a
314 | 1
315 |
316 |
317 |
318 |
319 | library\lib\armeabi
320 | 1
321 |
322 |
323 | library\lib\armeabi
324 | 1
325 |
326 |
327 |
328 |
329 | library\lib\armeabi-v7a
330 | 1
331 |
332 |
333 |
334 |
335 | library\lib\mips
336 | 1
337 |
338 |
339 | library\lib\mips
340 | 1
341 |
342 |
343 |
344 |
345 |
346 | library\lib\armeabi-v7a
347 | 1
348 |
349 |
350 | library\lib\arm64-v8a
351 | 1
352 |
353 |
354 |
355 |
356 | library\lib\armeabi-v7a
357 | 1
358 |
359 |
360 |
361 |
362 | res\drawable
363 | 1
364 |
365 |
366 | res\drawable
367 | 1
368 |
369 |
370 |
371 |
372 | res\values
373 | 1
374 |
375 |
376 | res\values
377 | 1
378 |
379 |
380 |
381 |
382 | res\values-v21
383 | 1
384 |
385 |
386 | res\values-v21
387 | 1
388 |
389 |
390 |
391 |
392 | res\values
393 | 1
394 |
395 |
396 | res\values
397 | 1
398 |
399 |
400 |
401 |
402 | res\drawable
403 | 1
404 |
405 |
406 | res\drawable
407 | 1
408 |
409 |
410 |
411 |
412 | res\drawable-xxhdpi
413 | 1
414 |
415 |
416 | res\drawable-xxhdpi
417 | 1
418 |
419 |
420 |
421 |
422 | res\drawable-ldpi
423 | 1
424 |
425 |
426 | res\drawable-ldpi
427 | 1
428 |
429 |
430 |
431 |
432 | res\drawable-mdpi
433 | 1
434 |
435 |
436 | res\drawable-mdpi
437 | 1
438 |
439 |
440 |
441 |
442 | res\drawable-hdpi
443 | 1
444 |
445 |
446 | res\drawable-hdpi
447 | 1
448 |
449 |
450 |
451 |
452 | res\drawable-xhdpi
453 | 1
454 |
455 |
456 | res\drawable-xhdpi
457 | 1
458 |
459 |
460 |
461 |
462 | res\drawable-mdpi
463 | 1
464 |
465 |
466 | res\drawable-mdpi
467 | 1
468 |
469 |
470 |
471 |
472 | res\drawable-hdpi
473 | 1
474 |
475 |
476 | res\drawable-hdpi
477 | 1
478 |
479 |
480 |
481 |
482 | res\drawable-xhdpi
483 | 1
484 |
485 |
486 | res\drawable-xhdpi
487 | 1
488 |
489 |
490 |
491 |
492 | res\drawable-xxhdpi
493 | 1
494 |
495 |
496 | res\drawable-xxhdpi
497 | 1
498 |
499 |
500 |
501 |
502 | res\drawable-xxxhdpi
503 | 1
504 |
505 |
506 | res\drawable-xxxhdpi
507 | 1
508 |
509 |
510 |
511 |
512 | res\drawable-small
513 | 1
514 |
515 |
516 | res\drawable-small
517 | 1
518 |
519 |
520 |
521 |
522 | res\drawable-normal
523 | 1
524 |
525 |
526 | res\drawable-normal
527 | 1
528 |
529 |
530 |
531 |
532 | res\drawable-large
533 | 1
534 |
535 |
536 | res\drawable-large
537 | 1
538 |
539 |
540 |
541 |
542 | res\drawable-xlarge
543 | 1
544 |
545 |
546 | res\drawable-xlarge
547 | 1
548 |
549 |
550 |
551 |
552 | res\values
553 | 1
554 |
555 |
556 | res\values
557 | 1
558 |
559 |
560 |
561 |
562 | 1
563 |
564 |
565 | Contents\MacOS
566 | 1
567 |
568 |
569 | 0
570 |
571 |
572 |
573 |
574 | Contents\MacOS
575 | 1
576 | .framework
577 |
578 |
579 | Contents\MacOS
580 | 1
581 | .framework
582 |
583 |
584 | 0
585 |
586 |
587 |
588 |
589 | 1
590 | .dylib
591 |
592 |
593 | 1
594 | .dylib
595 |
596 |
597 | 1
598 | .dylib
599 |
600 |
601 | Contents\MacOS
602 | 1
603 | .dylib
604 |
605 |
606 | Contents\MacOS
607 | 1
608 | .dylib
609 |
610 |
611 | 0
612 | .dll;.bpl
613 |
614 |
615 |
616 |
617 | 1
618 | .dylib
619 |
620 |
621 | 1
622 | .dylib
623 |
624 |
625 | 1
626 | .dylib
627 |
628 |
629 | Contents\MacOS
630 | 1
631 | .dylib
632 |
633 |
634 | Contents\MacOS
635 | 1
636 | .dylib
637 |
638 |
639 | 0
640 | .bpl
641 |
642 |
643 |
644 |
645 | 0
646 |
647 |
648 | 0
649 |
650 |
651 | 0
652 |
653 |
654 | 0
655 |
656 |
657 | 0
658 |
659 |
660 | Contents\Resources\StartUp\
661 | 0
662 |
663 |
664 | Contents\Resources\StartUp\
665 | 0
666 |
667 |
668 | 0
669 |
670 |
671 |
672 |
673 | 1
674 |
675 |
676 | 1
677 |
678 |
679 | 1
680 |
681 |
682 |
683 |
684 | 1
685 |
686 |
687 | 1
688 |
689 |
690 | 1
691 |
692 |
693 |
694 |
695 | 1
696 |
697 |
698 | 1
699 |
700 |
701 | 1
702 |
703 |
704 |
705 |
706 | 1
707 |
708 |
709 | 1
710 |
711 |
712 | 1
713 |
714 |
715 |
716 |
717 | 1
718 |
719 |
720 | 1
721 |
722 |
723 | 1
724 |
725 |
726 |
727 |
728 | 1
729 |
730 |
731 | 1
732 |
733 |
734 | 1
735 |
736 |
737 |
738 |
739 | 1
740 |
741 |
742 | 1
743 |
744 |
745 | 1
746 |
747 |
748 |
749 |
750 | 1
751 |
752 |
753 | 1
754 |
755 |
756 | 1
757 |
758 |
759 |
760 |
761 | 1
762 |
763 |
764 | 1
765 |
766 |
767 | 1
768 |
769 |
770 |
771 |
772 | 1
773 |
774 |
775 | 1
776 |
777 |
778 | 1
779 |
780 |
781 |
782 |
783 | 1
784 |
785 |
786 | 1
787 |
788 |
789 | 1
790 |
791 |
792 |
793 |
794 | 1
795 |
796 |
797 | 1
798 |
799 |
800 | 1
801 |
802 |
803 |
804 |
805 | 1
806 |
807 |
808 | 1
809 |
810 |
811 | 1
812 |
813 |
814 |
815 |
816 | 1
817 |
818 |
819 | 1
820 |
821 |
822 | 1
823 |
824 |
825 |
826 |
827 | 1
828 |
829 |
830 | 1
831 |
832 |
833 | 1
834 |
835 |
836 |
837 |
838 | 1
839 |
840 |
841 | 1
842 |
843 |
844 | 1
845 |
846 |
847 |
848 |
849 | 1
850 |
851 |
852 | 1
853 |
854 |
855 | 1
856 |
857 |
858 |
859 |
860 | 1
861 |
862 |
863 | 1
864 |
865 |
866 | 1
867 |
868 |
869 |
870 |
871 | 1
872 |
873 |
874 | 1
875 |
876 |
877 | 1
878 |
879 |
880 |
881 |
882 | 1
883 |
884 |
885 | 1
886 |
887 |
888 | 1
889 |
890 |
891 |
892 |
893 | 1
894 |
895 |
896 | 1
897 |
898 |
899 | 1
900 |
901 |
902 |
903 |
904 | 1
905 |
906 |
907 | 1
908 |
909 |
910 | 1
911 |
912 |
913 |
914 |
915 | 1
916 |
917 |
918 | 1
919 |
920 |
921 | 1
922 |
923 |
924 |
925 |
926 | 1
927 |
928 |
929 | 1
930 |
931 |
932 | 1
933 |
934 |
935 |
936 |
937 | 1
938 |
939 |
940 | 1
941 |
942 |
943 | 1
944 |
945 |
946 |
947 |
948 | 1
949 |
950 |
951 | 1
952 |
953 |
954 | 1
955 |
956 |
957 |
958 |
959 | 1
960 |
961 |
962 | 1
963 |
964 |
965 | 1
966 |
967 |
968 |
969 |
970 | 1
971 |
972 |
973 | 1
974 |
975 |
976 | 1
977 |
978 |
979 |
980 |
981 | 1
982 |
983 |
984 | 1
985 |
986 |
987 |
988 |
989 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF
990 | 1
991 |
992 |
993 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF
994 | 1
995 |
996 |
997 |
998 |
999 | 1
1000 |
1001 |
1002 | 1
1003 |
1004 |
1005 |
1006 |
1007 | ..\
1008 | 1
1009 |
1010 |
1011 | ..\
1012 | 1
1013 |
1014 |
1015 |
1016 |
1017 | 1
1018 |
1019 |
1020 | 1
1021 |
1022 |
1023 | 1
1024 |
1025 |
1026 |
1027 |
1028 | 1
1029 |
1030 |
1031 | 1
1032 |
1033 |
1034 | 1
1035 |
1036 |
1037 |
1038 |
1039 | ..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF
1040 | 1
1041 |
1042 |
1043 |
1044 |
1045 | ..\
1046 | 1
1047 |
1048 |
1049 | ..\
1050 | 1
1051 |
1052 |
1053 |
1054 |
1055 | Contents
1056 | 1
1057 |
1058 |
1059 | Contents
1060 | 1
1061 |
1062 |
1063 |
1064 |
1065 | Contents\Resources
1066 | 1
1067 |
1068 |
1069 | Contents\Resources
1070 | 1
1071 |
1072 |
1073 |
1074 |
1075 | library\lib\armeabi-v7a
1076 | 1
1077 |
1078 |
1079 | library\lib\arm64-v8a
1080 | 1
1081 |
1082 |
1083 | 1
1084 |
1085 |
1086 | 1
1087 |
1088 |
1089 | 1
1090 |
1091 |
1092 | 1
1093 |
1094 |
1095 | Contents\MacOS
1096 | 1
1097 |
1098 |
1099 | Contents\MacOS
1100 | 1
1101 |
1102 |
1103 | 0
1104 |
1105 |
1106 |
1107 |
1108 | library\lib\armeabi-v7a
1109 | 1
1110 |
1111 |
1112 |
1113 |
1114 | 1
1115 |
1116 |
1117 | 1
1118 |
1119 |
1120 |
1121 |
1122 | Assets
1123 | 1
1124 |
1125 |
1126 | Assets
1127 | 1
1128 |
1129 |
1130 |
1131 |
1132 | Assets
1133 | 1
1134 |
1135 |
1136 | Assets
1137 | 1
1138 |
1139 |
1140 |
1141 |
1142 |
1143 |
1144 |
1145 |
1146 |
1147 |
1148 |
1149 |
1150 |
1151 |
1152 | True
1153 | True
1154 | True
1155 | True
1156 | True
1157 |
1158 | False
1159 |
1160 | 12
1161 |
1162 |
1163 |
1164 |
1165 |
1166 |
--------------------------------------------------------------------------------
/Image_Effects_Icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MuminjonGuru/Image-Effects/c5690fd8484c58fa6db1ff3e4cec640c3799eb94/Image_Effects_Icon.ico
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 | {one line to give the program's name and a brief idea of what it does.}
635 | Copyright (C) {year} {name of author}
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | {project} Copyright (C) {year} {fullname}
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Show some :heart: and star the repo to support the project
2 |
3 | ## Delphi FMX Image Effects program for Windows OS
4 |
5 | This program powered by the FireMonkey framework. And uses FMX components.
6 | 
7 |
8 | Here this is the development screenshot (RAD Studio 10.1 Berlin)
9 | 
10 |
11 | In this Image Effects program, you can change your existing pictures. See that!
12 | 
13 |
14 | There are several effects, for example:
15 | - Ripple
16 | - Blur
17 | - Invert
18 | - Monochrome
19 | - Gloom
20 | - Emboss
21 | - Sepial
22 | - Pencil
23 |
24 | **How to make a screenshot from running application in Delphi FireMonkey?**
25 |
26 | procedure TFormMain.MenuItemSavePictureClick(Sender: TObject);
27 | var
28 | B: TBitmap;
29 |
30 | begin
31 | B := TBitmap.Create;
32 | try
33 | if SaveDialog1.Execute then
34 | B := Image1.MakeScreenshot;
35 | Image1.Bitmap.Assign(B);
36 |
37 | Image1.Bitmap.SaveToFile(SaveDialog1.FileName + '.bmp');
38 | finally
39 | B.Free;
40 | end;
41 | end;
42 |
43 | Learn more on my website! [Delphi.Uz](https://delphi.uz/2017/01/25/delphi-windows-development/delphi-fmx-image-effects-program-windows-os/)
44 |
45 | I'm on social networks:
46 | - [FaceBook](https://www.facebook.com/wwwdelphiuz/)
47 | - [Twitter](https://twitter.com/MuminjonGuru)
48 | - [LinkedIn](https://www.linkedin.com/in/muminjon-abduraimov/)
49 | - [YouTube](https://youtube.com/MuminjonAbduraimov)
50 |
51 | My Android app which is built with Delphi FireMonkey
52 | - [Google Play Store](https://play.google.com/store/apps/details?id=com.delphiapplications.delphiexamples)
53 |
--------------------------------------------------------------------------------
/UnitAbout.fmx:
--------------------------------------------------------------------------------
1 | object FormAbout: TFormAbout
2 | Left = 0
3 | Top = 0
4 | BorderIcons = [biSystemMenu]
5 | BorderStyle = Single
6 | Caption = 'About'
7 | ClientHeight = 350
8 | ClientWidth = 350
9 | Position = ScreenCenter
10 | FormStyle = StayOnTop
11 | FormFactor.Width = 320
12 | FormFactor.Height = 480
13 | FormFactor.Devices = [Desktop]
14 | DesignerMasterStyle = 0
15 | object Panel1: TPanel
16 | Align = Client
17 | Cursor = crHandPoint
18 | Margins.Left = 10.000000000000000000
19 | Margins.Top = 10.000000000000000000
20 | Margins.Right = 10.000000000000000000
21 | Margins.Bottom = 10.000000000000000000
22 | Size.Width = 330.000000000000000000
23 | Size.Height = 330.000000000000000000
24 | Size.PlatformDefault = False
25 | TabOrder = 0
26 | OnClick = Panel1Click
27 | object Layout1: TLayout
28 | Position.X = 135.000000000000000000
29 | Position.Y = 239.000000000000000000
30 | Size.Width = 74.000000000000000000
31 | Size.Height = 42.000000000000000000
32 | Size.PlatformDefault = False
33 | TabOrder = 0
34 | object Ellipse3: TEllipse
35 | Fill.Color = claForestgreen
36 | HitTest = False
37 | Position.X = 6.000000000000000000
38 | Position.Y = 12.000000000000000000
39 | Scale.X = 0.500000000000000000
40 | Scale.Y = 0.500000000000000000
41 | Size.Width = 97.000000000000000000
42 | Size.Height = 41.000000000000000000
43 | Size.PlatformDefault = False
44 | Stroke.Kind = None
45 | object Ellipse4: TEllipse
46 | Fill.Color = claLightblue
47 | HitTest = False
48 | Position.X = 64.000000000000000000
49 | Position.Y = -24.000000000000000000
50 | RotationAngle = -5.000000000000000000
51 | Size.Width = 49.000000000000000000
52 | Size.Height = 37.000000000000000000
53 | Size.PlatformDefault = False
54 | object Circle3: TCircle
55 | Fill.Color = claWhite
56 | Locked = True
57 | HitTest = False
58 | Position.X = -3.000000000000000000
59 | Position.Y = -9.000000000000000000
60 | Size.Width = 33.000000000000000000
61 | Size.Height = 57.000000000000000000
62 | Size.PlatformDefault = False
63 | object Circle4: TCircle
64 | Fill.Color = claBlack
65 | Locked = True
66 | HitTest = False
67 | Position.X = 11.000000000000000000
68 | Position.Y = 23.000000000000000000
69 | Size.Width = 17.000000000000000000
70 | Size.Height = 17.000000000000000000
71 | Size.PlatformDefault = False
72 | end
73 | end
74 | end
75 | object Pie2: TPie
76 | Fill.Kind = Gradient
77 | Fill.Gradient.Points = <
78 | item
79 | Color = claLightblue
80 | Offset = 0.000000000000000000
81 | end
82 | item
83 | Color = xFFF3CD90
84 | Offset = 1.000000000000000000
85 | end>
86 | Fill.Gradient.StartPosition.X = 0.500000000000000000
87 | Fill.Gradient.StartPosition.Y = 1.000000000000000000
88 | Fill.Gradient.StopPosition.X = 0.499999970197677600
89 | Fill.Gradient.StopPosition.Y = 0.000000000000000000
90 | Locked = True
91 | HitTest = False
92 | Position.X = 15.000000000000000000
93 | Position.Y = -40.000000000000000000
94 | RotationAngle = 170.000000000000000000
95 | Size.Width = 90.000000000000000000
96 | Size.Height = 106.000000000000000000
97 | Size.PlatformDefault = False
98 | Stroke.Kind = None
99 | EndAngle = -90.000000000000000000
100 | object FloatAnimation2: TFloatAnimation
101 | AnimationType = InOut
102 | AutoReverse = True
103 | Enabled = True
104 | Duration = 0.500000000000000000
105 | Interpolation = Sinusoidal
106 | Loop = True
107 | PropertyName = 'EndAngle'
108 | StartValue = -100.000000000000000000
109 | StartFromCurrent = True
110 | StopValue = 100.000000000000000000
111 | end
112 | end
113 | end
114 | end
115 | object Label7: TLabel
116 | Align = Bottom
117 | AutoSize = True
118 | StyledSettings = [Style]
119 | Position.Y = 311.000000000000000000
120 | Size.Width = 330.000000000000000000
121 | Size.Height = 19.000000000000000000
122 | Size.PlatformDefault = False
123 | TextSettings.Font.Family = 'Trebuchet MS'
124 | TextSettings.Font.Size = 16.000000000000000000
125 | TextSettings.FontColor = claNavy
126 | TextSettings.HorzAlign = Center
127 | TextSettings.WordWrap = False
128 | Text = '(c) 2016-2017 Delphi.Uz'
129 | end
130 | object Label8: TLabel
131 | Align = Top
132 | AutoSize = True
133 | StyledSettings = [Style]
134 | Size.Width = 330.000000000000000000
135 | Size.Height = 19.000000000000000000
136 | Size.PlatformDefault = False
137 | TextSettings.Font.Family = 'Trebuchet MS'
138 | TextSettings.Font.Size = 16.000000000000000000
139 | TextSettings.FontColor = claNavy
140 | TextSettings.HorzAlign = Center
141 | TextSettings.WordWrap = False
142 | Text = 'Created by : @MuminjonGuru'
143 | end
144 | object Label10: TLabel
145 | AutoSize = True
146 | StyledSettings = [Style]
147 | Position.X = 27.000000000000000000
148 | Position.Y = 114.000000000000000000
149 | Size.Width = 271.000000000000000000
150 | Size.Height = 19.000000000000000000
151 | Size.PlatformDefault = False
152 | TextSettings.Font.Family = 'Trebuchet MS'
153 | TextSettings.Font.Size = 16.000000000000000000
154 | TextSettings.FontColor = claForestgreen
155 | TextSettings.WordWrap = False
156 | Text = 'Programming : Abduraimov Mo'#39'minjon'
157 | end
158 | object FloatAnimation3: TFloatAnimation
159 | Duration = 0.200000002980232200
160 | StartValue = 0.000000000000000000
161 | StopValue = 0.000000000000000000
162 | end
163 | object ShadowEffect1: TShadowEffect
164 | Distance = 3.000000000000000000
165 | Direction = 45.000000000000000000
166 | Softness = 0.300000011920929000
167 | Opacity = 0.600000023841857900
168 | ShadowColor = claBlack
169 | end
170 | end
171 | object ShadowEffect2: TShadowEffect
172 | Distance = 3.000000000000000000
173 | Direction = 45.000000000000000000
174 | Softness = 0.300000011920929000
175 | Opacity = 0.600000023841857900
176 | ShadowColor = claBlack
177 | end
178 | end
179 |
--------------------------------------------------------------------------------
/UnitAbout.pas:
--------------------------------------------------------------------------------
1 | //
2 | // Copyright Abduraimov Mo'minjon 2017
3 | // Image Effects program for Windows OS
4 | //
5 | // @MrDlephiGuru
6 | // https://delphi.uz
7 |
8 |
9 | unit UnitAbout;
10 |
11 | interface
12 |
13 | uses
14 | System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
15 | FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
16 | FMX.Ani, FMX.Objects, FMX.Layouts, FMX.Effects, FMX.Controls.Presentation,
17 | {$IFDEF MSWINDOWS}
18 | Winapi.ShellAPI, Winapi.Windows
19 | {$ENDIF MSWINDOWS};
20 |
21 |
22 | type
23 | TFormAbout = class(TForm)
24 | Panel1: TPanel;
25 | Layout1: TLayout;
26 | Ellipse3: TEllipse;
27 | Ellipse4: TEllipse;
28 | Circle3: TCircle;
29 | Circle4: TCircle;
30 | Pie2: TPie;
31 | FloatAnimation2: TFloatAnimation;
32 | Label7: TLabel;
33 | Label8: TLabel;
34 | Label10: TLabel;
35 | FloatAnimation3: TFloatAnimation;
36 | ShadowEffect1: TShadowEffect;
37 | ShadowEffect2: TShadowEffect;
38 | procedure Panel1Click(Sender: TObject);
39 | private
40 | { Private declarations }
41 | public
42 | { Public declarations }
43 | end;
44 |
45 | var
46 | FormAbout: TFormAbout;
47 |
48 | implementation
49 |
50 | {$R *.fmx}
51 |
52 | procedure TFormAbout.Panel1Click(Sender: TObject);
53 | begin
54 | ShellExecute(0, 'OPEN', 'https://muminjon.com', Nil, Nil, SW_SHOWMAXIMIZED);
55 | end;
56 |
57 | end.
58 |
--------------------------------------------------------------------------------
/UnitMain.Windows.fmx:
--------------------------------------------------------------------------------
1 | inherited FormMain_Windows: TFormMain_Windows
2 | DesignerMasterStyle = 0
3 | inherited PanelBottom: TPanel
4 | inherited SBBlur: TSpinBox
5 | Visible = False
6 | end
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/UnitMain.fmx:
--------------------------------------------------------------------------------
1 | object FormMain: TFormMain
2 | Left = 0
3 | Top = 0
4 | Caption = 'Image Effects www.Delphi.uz'
5 | ClientHeight = 476
6 | ClientWidth = 681
7 | Fill.Kind = Gradient
8 | Fill.Gradient.Points = <
9 | item
10 | Color = xFFD4F7FB
11 | Offset = 0.000000000000000000
12 | end
13 | item
14 | Color = xFFABFBCF
15 | Offset = 1.000000000000000000
16 | end>
17 | Fill.Gradient.StartPosition.X = 0.500000000000000000
18 | Fill.Gradient.StartPosition.Y = 1.000000000000000000
19 | Fill.Gradient.StopPosition.X = 0.499999970197677600
20 | Fill.Gradient.StopPosition.Y = 0.000000000000000000
21 | Position = DesktopCenter
22 | WindowState = wsMaximized
23 | FormFactor.Width = 320
24 | FormFactor.Height = 480
25 | FormFactor.Devices = [Desktop]
26 | OnCreate = FormCreate
27 | DesignerMasterStyle = 0
28 | object PanelBottom: TPanel
29 | Align = Bottom
30 | Margins.Left = 5.000000000000000000
31 | Margins.Top = 5.000000000000000000
32 | Margins.Right = 5.000000000000000000
33 | Margins.Bottom = 5.000000000000000000
34 | Position.X = 5.000000000000000000
35 | Position.Y = 415.000000000000000000
36 | Size.Width = 671.000000000000000000
37 | Size.Height = 56.000000000000000000
38 | Size.PlatformDefault = False
39 | TabOrder = 1
40 | object BtnOpen: TButton
41 | Align = Left
42 | Cursor = crHandPoint
43 | StyledSettings = [Style, FontColor]
44 | ModalResult = 1
45 | Margins.Left = 15.000000000000000000
46 | Margins.Top = 15.000000000000000000
47 | Margins.Right = 15.000000000000000000
48 | Margins.Bottom = 15.000000000000000000
49 | Position.X = 15.000000000000000000
50 | Position.Y = 15.000000000000000000
51 | Size.Width = 106.000000000000000000
52 | Size.Height = 26.000000000000000000
53 | Size.PlatformDefault = False
54 | TabOrder = 0
55 | Text = 'Open Picture'
56 | TextSettings.Font.Family = 'Trebuchet MS'
57 | TextSettings.Font.Size = 14.000000000000000000
58 | OnClick = BtnOpenClick
59 | object ShadowEffect3: TShadowEffect
60 | Distance = 3.000000000000000000
61 | Direction = 45.000000000000000000
62 | Softness = 0.300000011920929000
63 | Opacity = 0.600000023841857900
64 | ShadowColor = claBlack
65 | end
66 | end
67 | object SBRipple: TSpinBox
68 | Touch.InteractiveGestures = [LongTap, DoubleTap]
69 | Align = Left
70 | TabOrder = 2
71 | Cursor = crIBeam
72 | Value = 15.000000000000000000
73 | Increment = 2.000000000000000000
74 | Position.X = 151.000000000000000000
75 | Position.Y = 20.000000000000000000
76 | TextSettings.Font.Family = 'Trebuchet MS'
77 | TextSettings.Font.Size = 14.000000000000000000
78 | Margins.Left = 15.000000000000000000
79 | Margins.Top = 20.000000000000000000
80 | Margins.Right = 15.000000000000000000
81 | Margins.Bottom = 15.000000000000000000
82 | Size.Width = 82.000000000000000000
83 | Size.Height = 21.000000000000000000
84 | Size.PlatformDefault = False
85 | StyledSettings = [Style, FontColor]
86 | OnChange = SBRippleChange
87 | object ShadowEffect5: TShadowEffect
88 | Distance = 3.000000000000000000
89 | Direction = 45.000000000000000000
90 | Softness = 0.300000011920929000
91 | Opacity = 0.600000023841857900
92 | ShadowColor = claBlack
93 | end
94 | end
95 | object SBBlur: TSpinBox
96 | Touch.InteractiveGestures = [LongTap, DoubleTap]
97 | Align = Left
98 | TabOrder = 1
99 | Cursor = crIBeam
100 | Max = 9.000000000000000000
101 | Value = 1.000000000000000000
102 | ValueType = Float
103 | Increment = 0.200000002980232200
104 | Position.X = 263.000000000000000000
105 | Position.Y = 20.000000000000000000
106 | TextSettings.Font.Family = 'Trebuchet MS'
107 | TextSettings.Font.Size = 14.000000000000000000
108 | Margins.Left = 15.000000000000000000
109 | Margins.Top = 20.000000000000000000
110 | Margins.Right = 15.000000000000000000
111 | Margins.Bottom = 15.000000000000000000
112 | Size.Width = 82.000000000000000000
113 | Size.Height = 21.000000000000000000
114 | Size.PlatformDefault = False
115 | StyledSettings = [Style, FontColor]
116 | OnChange = SBBlurChange
117 | object ShadowEffect4: TShadowEffect
118 | Distance = 3.000000000000000000
119 | Direction = 45.000000000000000000
120 | Softness = 0.300000011920929000
121 | Opacity = 0.600000023841857900
122 | ShadowColor = claBlack
123 | end
124 | end
125 | object BtnAbout: TButton
126 | Align = Right
127 | Cursor = crHandPoint
128 | StyledSettings = [Style, FontColor]
129 | Margins.Left = 15.000000000000000000
130 | Margins.Top = 15.000000000000000000
131 | Margins.Right = 15.000000000000000000
132 | Margins.Bottom = 15.000000000000000000
133 | Position.X = 576.000000000000000000
134 | Position.Y = 15.000000000000000000
135 | Size.Width = 80.000000000000000000
136 | Size.Height = 26.000000000000000000
137 | Size.PlatformDefault = False
138 | TabOrder = 3
139 | Text = 'About'
140 | TextSettings.Font.Family = 'Trebuchet MS'
141 | TextSettings.Font.Size = 14.000000000000000000
142 | OnClick = BtnAboutClick
143 | object ShadowEffect2: TShadowEffect
144 | Distance = 3.000000000000000000
145 | Direction = 45.000000000000000000
146 | Softness = 0.300000011920929000
147 | Opacity = 0.600000023841857900
148 | ShadowColor = claBlack
149 | end
150 | end
151 | object ShadowEffect1: TShadowEffect
152 | Distance = 3.000000000000000000
153 | Direction = 45.000000000000000000
154 | Softness = 0.300000011920929000
155 | Opacity = 0.600000023841857900
156 | ShadowColor = claBlack
157 | end
158 | object CheckBox1: TCheckBox
159 | Align = Left
160 | Cursor = crHandPoint
161 | StyledSettings = [Style, FontColor]
162 | Margins.Left = 5.000000000000000000
163 | Margins.Top = 10.000000000000000000
164 | Margins.Right = 5.000000000000000000
165 | Margins.Bottom = 5.000000000000000000
166 | Position.X = 365.000000000000000000
167 | Position.Y = 10.000000000000000000
168 | Size.Width = 76.000000000000000000
169 | Size.Height = 41.000000000000000000
170 | Size.PlatformDefault = False
171 | TabOrder = 4
172 | Text = 'Stretch'
173 | TextSettings.Font.Family = 'Trebuchet MS'
174 | TextSettings.Font.Size = 14.000000000000000000
175 | OnChange = CheckBox1Change
176 | end
177 | end
178 | object OpenDialog1: TOpenDialog
179 | Left = 568
180 | Top = 232
181 | end
182 | object Image1: TImage
183 | MultiResBitmap = <
184 | item
185 | end>
186 | Align = Client
187 | Margins.Left = 10.000000000000000000
188 | Margins.Top = 5.000000000000000000
189 | Margins.Right = 10.000000000000000000
190 | Margins.Bottom = 5.000000000000000000
191 | PopupMenu = PopupMenu1
192 | Size.Width = 661.000000000000000000
193 | Size.Height = 341.000000000000000000
194 | Size.PlatformDefault = False
195 | object RippleEffect1: TRippleEffect
196 | Amplitude = 0.100000001490116100
197 | Frequency = 15.000000000000000000
198 | Phase = 0.000000000000000000
199 | AspectRatio = 1.500000000000000000
200 | end
201 | object InvertEffect1: TInvertEffect
202 | Enabled = False
203 | end
204 | object MonochromeEffect1: TMonochromeEffect
205 | Enabled = False
206 | end
207 | object BlurEffect1: TBlurEffect
208 | Softness = 1.000000000000000000
209 | Enabled = False
210 | end
211 | object GloomEffect1: TGloomEffect
212 | Enabled = False
213 | GloomIntensity = 1.000000000000000000
214 | BaseIntensity = 1.000000000000000000
215 | GloomSaturation = 1.000000000000000000
216 | BaseSaturation = 1.000000000000000000
217 | end
218 | object EmbossEffect1: TEmbossEffect
219 | Enabled = False
220 | Amount = 1.000000000000000000
221 | Width = 3.000000000000000000
222 | end
223 | object PencilStrokeEffect1: TPencilStrokeEffect
224 | Enabled = False
225 | brushSize = 1.000000000000000000
226 | end
227 | object SepiaEffect1: TSepiaEffect
228 | Enabled = False
229 | Amount = 0.500000000000000000
230 | end
231 | end
232 | object PanelTop: TPanel
233 | Align = Top
234 | Margins.Left = 5.000000000000000000
235 | Margins.Top = 5.000000000000000000
236 | Margins.Right = 5.000000000000000000
237 | Margins.Bottom = 5.000000000000000000
238 | Position.X = 5.000000000000000000
239 | Position.Y = 5.000000000000000000
240 | Size.Width = 671.000000000000000000
241 | Size.Height = 49.000000000000000000
242 | Size.PlatformDefault = False
243 | TabOrder = 4
244 | object GroupBox1: TGroupBox
245 | Align = Client
246 | StyledSettings = [Other]
247 | Margins.Left = 5.000000000000000000
248 | Margins.Top = 5.000000000000000000
249 | Margins.Right = 5.000000000000000000
250 | Margins.Bottom = 5.000000000000000000
251 | Size.Width = 661.000000000000000000
252 | Size.Height = 39.000000000000000000
253 | Size.PlatformDefault = False
254 | Text = 'Effects'
255 | TextSettings.Font.Family = 'Trebuchet MS'
256 | TextSettings.Font.Size = 14.000000000000000000
257 | TextSettings.FontColor = claForestgreen
258 | TabOrder = 0
259 | object RBRipple: TRadioButton
260 | Align = Left
261 | Cursor = crHandPoint
262 | StyledSettings = [Style]
263 | IsChecked = True
264 | Margins.Left = 5.000000000000000000
265 | Margins.Top = 5.000000000000000000
266 | Margins.Right = 5.000000000000000000
267 | Position.X = 5.000000000000000000
268 | Position.Y = 5.000000000000000000
269 | Size.Width = 68.000000000000000000
270 | Size.Height = 34.000000000000000000
271 | Size.PlatformDefault = False
272 | TabOrder = 7
273 | Text = 'Ripple'
274 | TextSettings.Font.Family = 'Trebuchet MS'
275 | TextSettings.Font.Size = 14.000000000000000000
276 | TextSettings.FontColor = claNavy
277 | OnChange = RBRippleChange
278 | end
279 | object RBBlur: TRadioButton
280 | Align = Left
281 | Cursor = crHandPoint
282 | StyledSettings = [Style]
283 | Margins.Left = 5.000000000000000000
284 | Margins.Top = 5.000000000000000000
285 | Margins.Right = 5.000000000000000000
286 | Position.X = 83.000000000000000000
287 | Position.Y = 5.000000000000000000
288 | Size.Width = 54.000000000000000000
289 | Size.Height = 34.000000000000000000
290 | Size.PlatformDefault = False
291 | TabOrder = 6
292 | Text = 'Blur'
293 | TextSettings.Font.Family = 'Trebuchet MS'
294 | TextSettings.Font.Size = 14.000000000000000000
295 | TextSettings.FontColor = claNavy
296 | OnChange = RBBlurChange
297 | end
298 | object RBInvert: TRadioButton
299 | Align = Left
300 | Cursor = crHandPoint
301 | StyledSettings = [Style]
302 | Margins.Left = 5.000000000000000000
303 | Margins.Top = 5.000000000000000000
304 | Margins.Right = 5.000000000000000000
305 | Position.X = 147.000000000000000000
306 | Position.Y = 5.000000000000000000
307 | Size.Width = 68.000000000000000000
308 | Size.Height = 34.000000000000000000
309 | Size.PlatformDefault = False
310 | TabOrder = 5
311 | Text = 'Invert'
312 | TextSettings.Font.Family = 'Trebuchet MS'
313 | TextSettings.Font.Size = 14.000000000000000000
314 | TextSettings.FontColor = claNavy
315 | OnChange = RBInvertChange
316 | end
317 | object RBMonochrome: TRadioButton
318 | Align = Left
319 | Cursor = crHandPoint
320 | StyledSettings = [Style]
321 | Margins.Left = 5.000000000000000000
322 | Margins.Top = 5.000000000000000000
323 | Margins.Right = 5.000000000000000000
324 | Position.X = 225.000000000000000000
325 | Position.Y = 5.000000000000000000
326 | Size.Width = 112.000000000000000000
327 | Size.Height = 34.000000000000000000
328 | Size.PlatformDefault = False
329 | TabOrder = 4
330 | Text = 'Monochrome'
331 | TextSettings.Font.Family = 'Trebuchet MS'
332 | TextSettings.Font.Size = 14.000000000000000000
333 | TextSettings.FontColor = claNavy
334 | OnChange = RBMonochromeChange
335 | end
336 | object RBGloom: TRadioButton
337 | Align = Left
338 | Cursor = crHandPoint
339 | StyledSettings = [Style]
340 | Margins.Left = 5.000000000000000000
341 | Margins.Top = 5.000000000000000000
342 | Margins.Right = 5.000000000000000000
343 | Position.X = 347.000000000000000000
344 | Position.Y = 5.000000000000000000
345 | Size.Width = 70.000000000000000000
346 | Size.Height = 34.000000000000000000
347 | Size.PlatformDefault = False
348 | TabOrder = 3
349 | Text = 'Gloom'
350 | TextSettings.Font.Family = 'Trebuchet MS'
351 | TextSettings.Font.Size = 14.000000000000000000
352 | TextSettings.FontColor = claNavy
353 | OnChange = RBGloomChange
354 | end
355 | object RBEmboss: TRadioButton
356 | Align = Left
357 | Cursor = crHandPoint
358 | StyledSettings = [Style]
359 | Margins.Left = 5.000000000000000000
360 | Margins.Top = 5.000000000000000000
361 | Margins.Right = 5.000000000000000000
362 | Position.X = 427.000000000000000000
363 | Position.Y = 5.000000000000000000
364 | Size.Width = 70.000000000000000000
365 | Size.Height = 34.000000000000000000
366 | Size.PlatformDefault = False
367 | TabOrder = 2
368 | Text = 'Emboss'
369 | TextSettings.Font.Family = 'Trebuchet MS'
370 | TextSettings.Font.Size = 14.000000000000000000
371 | TextSettings.FontColor = claNavy
372 | OnChange = RBEmbossChange
373 | end
374 | object RBPencil: TRadioButton
375 | Align = Left
376 | Cursor = crHandPoint
377 | StyledSettings = [Style]
378 | Margins.Left = 5.000000000000000000
379 | Margins.Top = 5.000000000000000000
380 | Margins.Right = 5.000000000000000000
381 | Position.X = 587.000000000000000000
382 | Position.Y = 5.000000000000000000
383 | Size.Width = 70.000000000000000000
384 | Size.Height = 34.000000000000000000
385 | Size.PlatformDefault = False
386 | TabOrder = 1
387 | Text = 'Pencil'
388 | TextSettings.Font.Family = 'Trebuchet MS'
389 | TextSettings.Font.Size = 14.000000000000000000
390 | TextSettings.FontColor = claNavy
391 | OnChange = RBPencilChange
392 | end
393 | object RBSepial: TRadioButton
394 | Align = Left
395 | Cursor = crHandPoint
396 | StyledSettings = [Style]
397 | Margins.Left = 5.000000000000000000
398 | Margins.Top = 5.000000000000000000
399 | Margins.Right = 5.000000000000000000
400 | Position.X = 507.000000000000000000
401 | Position.Y = 5.000000000000000000
402 | Size.Width = 70.000000000000000000
403 | Size.Height = 34.000000000000000000
404 | Size.PlatformDefault = False
405 | TabOrder = 0
406 | Text = 'Sepial'
407 | TextSettings.Font.Family = 'Trebuchet MS'
408 | TextSettings.Font.Size = 14.000000000000000000
409 | TextSettings.FontColor = claNavy
410 | OnChange = RBSepialChange
411 | end
412 | end
413 | object ShadowEffect7: TShadowEffect
414 | Distance = 2.000000000000000000
415 | Direction = 50.000000000000000000
416 | Softness = 0.300000011920929000
417 | Opacity = 0.600000023841857900
418 | ShadowColor = claBlack
419 | end
420 | end
421 | object PopupMenu1: TPopupMenu
422 | Left = 456
423 | Top = 232
424 | object MenuItemSavePicture: TMenuItem
425 | ShortCut = 16467
426 | Text = 'Save Picture'
427 | OnClick = MenuItemSavePictureClick
428 | end
429 | end
430 | object SaveDialog1: TSaveDialog
431 | Filter = 'Bitmap|*.bmp'
432 | Left = 320
433 | Top = 240
434 | end
435 | end
436 |
--------------------------------------------------------------------------------
/UnitMain.pas:
--------------------------------------------------------------------------------
1 | {***********************************************}
2 | { Copyright Abduraimov Mo'minjon 2017 }
3 | { Image Effects program for Windows OS }
4 | { }
5 | { @MuminjonGuru }
6 | { https://delphi.uz }
7 | { Learn MORE HERE: FMX.PhotoEditorDemo Sample }
8 | { }
9 | {***********************************************}
10 |
11 | unit UnitMain;
12 |
13 | interface
14 |
15 | uses
16 | System.SysUtils, System.Types, System.UITypes, System.Classes,
17 | System.Variants,
18 | FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
19 | FMX.Objects, FMX.Effects, FMX.Filter.Effects, FMX.Controls.Presentation,
20 | FMX.Edit, FMX.EditBox, FMX.SpinBox, System.Math.Vectors, UnitAbout,
21 | FMX.Menus;
22 |
23 | type
24 | TFormMain = class(TForm)
25 | Image1: TImage;
26 | PanelBottom: TPanel;
27 | BtnOpen: TButton;
28 | OpenDialog1: TOpenDialog;
29 | RippleEffect1: TRippleEffect;
30 | SBRipple: TSpinBox;
31 | GroupBox1: TGroupBox;
32 | RBRipple: TRadioButton;
33 | BlurEffect1: TBlurEffect;
34 | RBBlur: TRadioButton;
35 | RBInvert: TRadioButton;
36 | InvertEffect1: TInvertEffect;
37 | MonochromeEffect1: TMonochromeEffect;
38 | RBMonochrome: TRadioButton;
39 | PanelTop: TPanel;
40 | GloomEffect1: TGloomEffect;
41 | RBGloom: TRadioButton;
42 | SBBlur: TSpinBox;
43 | EmbossEffect1: TEmbossEffect;
44 | RBEmboss: TRadioButton;
45 | BtnAbout: TButton;
46 | ShadowEffect1: TShadowEffect;
47 | ShadowEffect2: TShadowEffect;
48 | ShadowEffect3: TShadowEffect;
49 | ShadowEffect4: TShadowEffect;
50 | ShadowEffect5: TShadowEffect;
51 | ShadowEffect7: TShadowEffect;
52 | CheckBox1: TCheckBox;
53 | PencilStrokeEffect1: TPencilStrokeEffect;
54 | SepiaEffect1: TSepiaEffect;
55 | RBPencil: TRadioButton;
56 | RBSepial: TRadioButton;
57 | PopupMenu1: TPopupMenu;
58 | MenuItemSavePicture: TMenuItem;
59 | SaveDialog1: TSaveDialog;
60 | procedure BtnOpenClick(Sender: TObject);
61 | procedure SBRippleChange(Sender: TObject);
62 | procedure RBRippleChange(Sender: TObject);
63 | procedure RBBlurChange(Sender: TObject);
64 | procedure RBInvertChange(Sender: TObject);
65 | procedure RBMonochromeChange(Sender: TObject);
66 | procedure RBGloomChange(Sender: TObject);
67 | procedure SBBlurChange(Sender: TObject);
68 | procedure FormCreate(Sender: TObject);
69 | procedure RBEmbossChange(Sender: TObject);
70 | procedure BtnAboutClick(Sender: TObject);
71 | procedure CheckBox1Change(Sender: TObject);
72 | procedure RBSepialChange(Sender: TObject);
73 | procedure RBPencilChange(Sender: TObject);
74 | procedure MenuItemSavePictureClick(Sender: TObject);
75 | private
76 | { Private declarations }
77 | public
78 | { Public declarations }
79 | end;
80 |
81 | var
82 | FormMain: TFormMain;
83 |
84 | implementation
85 |
86 | {$R *.fmx}
87 |
88 | procedure TFormMain.BtnAboutClick(Sender: TObject);
89 | begin
90 | if Not Assigned(FormAbout) then
91 | FormAbout := TFormAbout.Create(Application);
92 | FormAbout.Show;
93 | end;
94 |
95 | procedure TFormMain.BtnOpenClick(Sender: TObject);
96 | begin
97 | if OpenDialog1.Execute then
98 | Image1.Bitmap.LoadFromFile(OpenDialog1.FileName);
99 | end;
100 |
101 | procedure TFormMain.CheckBox1Change(Sender: TObject);
102 | begin
103 | if CheckBox1.IsChecked then
104 | begin
105 | Image1.WrapMode := TImageWrapMode.Stretch;
106 | end
107 | else
108 | begin
109 | Image1.WrapMode := TImageWrapMode.Fit;
110 | end;
111 | end;
112 |
113 | procedure TFormMain.FormCreate(Sender: TObject);
114 | begin
115 | SBBlur.Visible := False;
116 | end;
117 |
118 | procedure TFormMain.MenuItemSavePictureClick(Sender: TObject);
119 | var
120 | B: TBitmap;
121 | begin
122 | B := TBitmap.Create;
123 | Try
124 | if SaveDialog1.Execute then
125 | B := Image1.MakeScreenshot;
126 | Image1.Bitmap.Assign(B);
127 | Image1.Bitmap.SaveToFile(SaveDialog1.FileName + '.bmp');
128 | Finally
129 | B.Free;
130 | End;
131 | end;
132 |
133 | {*******************************}
134 | { Controlling Effect Components }
135 | {*******************************}
136 |
137 | procedure TFormMain.RBBlurChange(Sender: TObject);
138 | begin
139 | BlurEffect1.Enabled := RBBlur.IsChecked;
140 | SBBlur.Visible := True;
141 |
142 | SBRipple.Visible := False;
143 | RippleEffect1.Enabled := False;
144 | MonochromeEffect1.Enabled := False;
145 | InvertEffect1.Enabled := False;
146 | GloomEffect1.Enabled := False;
147 | EmbossEffect1.Enabled := False;
148 | SepiaEffect1.Enabled := False;
149 | PencilStrokeEffect1.Enabled := False;
150 | end;
151 |
152 | procedure TFormMain.RBEmbossChange(Sender: TObject);
153 | begin
154 | EmbossEffect1.Enabled := RBEmboss.IsChecked;
155 |
156 | BlurEffect1.Enabled := False;
157 | RippleEffect1.Enabled := False;
158 | InvertEffect1.Enabled := False;
159 | MonochromeEffect1.Enabled := False;
160 | GloomEffect1.Enabled := False;
161 | SBRipple.Visible := False;
162 | SBBlur.Visible := False;
163 | SepiaEffect1.Enabled := False;
164 | PencilStrokeEffect1.Enabled := False;
165 | end;
166 |
167 | procedure TFormMain.RBGloomChange(Sender: TObject);
168 | begin
169 | GloomEffect1.Enabled := RBGloom.IsChecked;
170 |
171 | BlurEffect1.Enabled := False;
172 | RippleEffect1.Enabled := False;
173 | InvertEffect1.Enabled := False;
174 | MonochromeEffect1.Enabled := False;
175 | EmbossEffect1.Enabled := False;
176 | SBRipple.Visible := False;
177 | SBBlur.Visible := False;
178 | SepiaEffect1.Enabled := False;
179 | PencilStrokeEffect1.Enabled := False;
180 | end;
181 |
182 | procedure TFormMain.RBInvertChange(Sender: TObject);
183 | begin
184 | InvertEffect1.Enabled := RBInvert.IsChecked;
185 |
186 | BlurEffect1.Enabled := False;
187 | MonochromeEffect1.Enabled := False;
188 | RippleEffect1.Enabled := False;
189 | GloomEffect1.Enabled := False;
190 | EmbossEffect1.Enabled := False;
191 | SBRipple.Visible := False;
192 | SBBlur.Visible := False;
193 | SepiaEffect1.Enabled := False;
194 | PencilStrokeEffect1.Enabled := False;
195 | end;
196 |
197 | procedure TFormMain.RBMonochromeChange(Sender: TObject);
198 | begin
199 | MonochromeEffect1.Enabled := RBMonochrome.IsChecked;
200 |
201 | BlurEffect1.Enabled := False;
202 | RippleEffect1.Enabled := False;
203 | InvertEffect1.Enabled := False;
204 | GloomEffect1.Enabled := False;
205 | EmbossEffect1.Enabled := False;
206 | SBRipple.Visible := False;
207 | SBBlur.Visible := False;
208 | SepiaEffect1.Enabled := False;
209 | PencilStrokeEffect1.Enabled := False;
210 | end;
211 |
212 | procedure TFormMain.RBPencilChange(Sender: TObject);
213 | begin
214 | PencilStrokeEffect1.Enabled := RBPencil.IsChecked;
215 |
216 | SepiaEffect1.Enabled := False;
217 | BlurEffect1.Enabled := False;
218 | SBBlur.Visible := False;
219 | SBRipple.Visible := False;
220 | MonochromeEffect1.Enabled := False;
221 | InvertEffect1.Enabled := False;
222 | GloomEffect1.Enabled := False;
223 | EmbossEffect1.Enabled := False;
224 | end;
225 |
226 | procedure TFormMain.RBRippleChange(Sender: TObject);
227 | begin
228 | RippleEffect1.Enabled := RBRipple.IsChecked;
229 | SBRipple.Visible := True;
230 |
231 | BlurEffect1.Enabled := False;
232 | SBBlur.Visible := False;
233 | MonochromeEffect1.Enabled := False;
234 | InvertEffect1.Enabled := False;
235 | GloomEffect1.Enabled := False;
236 | EmbossEffect1.Enabled := False;
237 | SepiaEffect1.Enabled := False;
238 | PencilStrokeEffect1.Enabled := False;
239 | end;
240 |
241 | procedure TFormMain.RBSepialChange(Sender: TObject);
242 | begin
243 | SepiaEffect1.Enabled := RBSepial.IsChecked;
244 |
245 | BlurEffect1.Enabled := False;
246 | SBBlur.Visible := False;
247 | SBRipple.Visible := False;
248 | MonochromeEffect1.Enabled := False;
249 | InvertEffect1.Enabled := False;
250 | GloomEffect1.Enabled := False;
251 | EmbossEffect1.Enabled := False;
252 | PencilStrokeEffect1.Enabled := False;
253 | end;
254 |
255 | procedure TFormMain.SBBlurChange(Sender: TObject);
256 | begin
257 | BlurEffect1.Softness := StrToFloat(SBBlur.Text);
258 | end;
259 |
260 | procedure TFormMain.SBRippleChange(Sender: TObject);
261 | begin
262 | RippleEffect1.Frequency := StrToInt(SBRipple.Text);
263 | end;
264 |
265 | end.
266 |
--------------------------------------------------------------------------------