Warning, file /frameworks/syntax-highlighting/autotests/html/highlight.pb.html was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 <!DOCTYPE html>
0002 <html><head>
0003 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
0004 <title>highlight.pb</title>
0005 <meta name="generator" content="KF5::SyntaxHighlighting - Definition (PureBasic) - Theme (Breeze Light)"/>
0006 </head><body style="background-color:#ffffff;color:#1f1c1b"><pre>
0007 <span style="color:#898887;">; This is a test file for kate's PureBasic highlighting.</span>
0008 
0009 <span style="color:#898887;">; BMP2x Converter by Sven Langenkamp</span>
0010 
0011 <span style="color:#644a9b;">UseJPEGImageEncoder</span>()
0012 <span style="color:#644a9b;">UsePNGImageEncoder</span>()
0013 
0014 <span style="font-weight:bold;">Declare</span> Convert(JPEG)
0015 
0016 <span style="font-weight:bold;">Enumeration </span><span style="color:#b08000;">1</span>
0017     <span style="color:#0057ae;">#JPEG</span>
0018     <span style="color:#0057ae;">#PNG</span>
0019 <span style="font-weight:bold;">EndEnumeration</span>
0020 
0021 <span style="color:#0057ae;background-color:#e0e9f8;">; BEGIN section</span>
0022 
0023 
0024 <span style="color:#0057ae;background-color:#e0e9f8;">; END</span>
0025 
0026 <span style="font-weight:bold;">Global</span> Count
0027 <span style="font-weight:bold;">Global</span> file.s
0028 <span style="font-weight:bold;">Global</span> filename.s
0029 <span style="font-weight:bold;">Global</span> fileext.s
0030 <span style="font-weight:bold;">Global</span> OutputFormat
0031 <span style="font-weight:bold;">Global</span> JPEGQuality
0032 
0033 Count        <span style="color:#ca60ca;">=</span> <span style="color:#b08000;">0</span>
0034 OutputFormat <span style="color:#ca60ca;">=</span> <span style="color:#b08000;">1</span>
0035 JPEGQuality  <span style="color:#ca60ca;">=</span> <span style="color:#ca60ca;">-</span><span style="color:#b08000;">1</span>
0036 
0037 <span style="color:#898887;">; MAIN PROGRAM------------------------------------------------------------------</span>
0038 
0039 <span style="color:#898887;">;Request Options</span>
0040 <span style="color:#644a9b;">PrintN</span>(<span style="color:#bf0303;">&quot;Output Format&quot;</span>)
0041 <span style="color:#644a9b;">PrintN</span>(<span style="color:#bf0303;">&quot;  [1] JPEG&quot;</span>)
0042 <span style="color:#644a9b;">PrintN</span>(<span style="color:#bf0303;">&quot;  [2] PNG&quot;</span>)
0043 <span style="color:#644a9b;">Print</span> (<span style="color:#bf0303;">&quot;&gt; &quot;</span>)
0044 OutputFormat <span style="color:#ca60ca;">=</span> <span style="color:#644a9b;">Int</span>(<span style="color:#644a9b;">Input</span>())
0045 
0046 <span style="font-weight:bold;">Select </span>OutputFormat
0047     <span style="font-weight:bold;">Case</span> <span style="color:#0057ae;">#JPEG</span>:
0048         fileext <span style="color:#ca60ca;">=</span> <span style="color:#bf0303;">&quot;.jpg&quot;</span>
0049         <span style="color:#898887;">;Request JPEG Quality</span>
0050         <span style="color:#644a9b;">PrintN</span>(<span style="color:#bf0303;">&quot;&quot;</span>)
0051         <span style="color:#644a9b;">PrintN</span>(<span style="color:#bf0303;">&quot;JPEG Quality&quot;</span>)
0052         <span style="color:#644a9b;">PrintN</span>(<span style="color:#bf0303;">&quot;  [0-10]&quot;</span>)
0053         <span style="color:#644a9b;">Print</span> (<span style="color:#bf0303;">&quot;&gt; &quot;</span>)
0054         JPEGQuality <span style="color:#ca60ca;">=</span> <span style="color:#644a9b;">Int</span>(<span style="color:#644a9b;">Input</span>())
0055     
0056     <span style="font-weight:bold;">Case</span> <span style="color:#0057ae;">#PNG</span>:
0057         fileext <span style="color:#ca60ca;">=</span> <span style="color:#bf0303;">&quot;.png&quot;</span>
0058 <span style="font-weight:bold;">EndSelect</span>
0059 
0060 <span style="color:#898887;">;Convert all BMP files in the current directory</span>
0061 <span style="color:#644a9b;">ExamineDirectory</span>(<span style="color:#b08000;">0</span>, <span style="color:#bf0303;">&quot;&quot;</span>, <span style="color:#bf0303;">&quot;*.bmp&quot;</span>)
0062 <span style="font-weight:bold;">While </span><span style="color:#644a9b;">NextDirectoryEntry</span>()   
0063     file     <span style="color:#ca60ca;">=</span> <span style="color:#644a9b;">DirectoryEntryName</span>()
0064     filename <span style="color:#ca60ca;">=</span> <span style="color:#644a9b;">GetFilePart</span>(file)
0065     
0066     <span style="font-weight:bold;">If </span><span style="color:#644a9b;">LoadImage</span>(<span style="color:#b08000;">0</span>, file)
0067         <span style="font-weight:bold;">Select </span>OutputFormat
0068         <span style="font-weight:bold;">Case</span> <span style="color:#0057ae;">#JPEG</span>:
0069           Convert(JPEGQuality)
0070           
0071         <span style="font-weight:bold;">Case</span> <span style="color:#0057ae;">#PNG</span>:
0072             Convert(<span style="color:#ca60ca;">-</span><span style="color:#b08000;">1</span>)
0073     <span style="font-weight:bold;">EndSelect</span>
0074     Count <span style="color:#ca60ca;">=</span> Count <span style="color:#ca60ca;">+</span><span style="color:#b08000;">1</span>
0075     <span style="font-weight:bold;">EndIf</span>
0076     
0077 <span style="font-weight:bold;">Wend</span>
0078 
0079 <span style="color:#644a9b;">PrintN</span>(<span style="color:#644a9b;">Str</span>(Count) <span style="color:#ca60ca;">+</span> <span style="color:#bf0303;">&quot; files converted&quot;</span>)
0080 <span style="color:#644a9b;">CloseConsole</span>()
0081 
0082 <span style="color:#898887;">; PROCUDURES--------------------------------------------------------------------</span>
0083 
0084 <span style="font-weight:bold;">Procedure </span>Convert(JPEG)
0085     <span style="font-weight:bold;">Shared</span> filename, fileext
0086     
0087     <span style="font-weight:bold;">If </span>JPEG <span style="color:#ca60ca;">&gt;</span> <span style="color:#ca60ca;">-</span><span style="color:#b08000;">1</span>
0088         <span style="color:#644a9b;">SaveImage</span>(<span style="color:#b08000;">0</span>, filename <span style="color:#ca60ca;">+</span> fileext, <span style="color:#0057ae;">#PB_ImagePlugin_JPEG</span>, JPEG)
0089     <span style="font-weight:bold;">Else</span>
0090         <span style="color:#644a9b;">SaveImage</span>(<span style="color:#b08000;">0</span>, filename <span style="color:#ca60ca;">+</span> fileext, <span style="color:#0057ae;">#PB_ImagePlugin_PNG</span>)    
0091     <span style="font-weight:bold;">EndIf</span>
0092     <span style="color:#644a9b;">PrintN</span>(file <span style="color:#ca60ca;">+</span> <span style="color:#bf0303;">&quot; converted to &quot;</span> <span style="color:#ca60ca;">+</span> filename <span style="color:#ca60ca;">+</span> fileext)
0093 <span style="font-weight:bold;">EndProcedure</span>
0094 </pre></body></html>