{"id":932,"date":"2025-05-10T22:14:40","date_gmt":"2025-05-10T22:14:40","guid":{"rendered":"https:\/\/pensplace.co.uk\/?post_type=wpdmpro&#038;p=932"},"modified":"2025-05-10T22:23:57","modified_gmt":"2025-05-10T22:23:57","slug":"streamline-vectors","status":"publish","type":"wpdmpro","link":"https:\/\/pensplace.co.uk\/index.php\/download\/streamline-vectors\/","title":{"rendered":"Streamline Vectors"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"600\" src=\"https:\/\/pensplace.co.uk\/wp-content\/uploads\/2025\/05\/image-31-1024x600.png\" alt=\"\" class=\"wp-image-934\" srcset=\"https:\/\/pensplace.co.uk\/wp-content\/uploads\/2025\/05\/image-31-1024x600.png 1024w, https:\/\/pensplace.co.uk\/wp-content\/uploads\/2025\/05\/image-31-300x176.png 300w, https:\/\/pensplace.co.uk\/wp-content\/uploads\/2025\/05\/image-31-768x450.png 768w, https:\/\/pensplace.co.uk\/wp-content\/uploads\/2025\/05\/image-31-1536x900.png 1536w, https:\/\/pensplace.co.uk\/wp-content\/uploads\/2025\/05\/image-31.png 1661w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Meta Data<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Column Name<\/strong><\/td><td><strong>Data<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td>Name<\/td><td>Streamline Vectors<\/td><td>Name of the Pack<\/td><\/tr><tr><td>Shortcode<\/td><td>stremline<\/td><td>Shortcode of the pack used for filtering<\/td><\/tr><tr><td>Github Link<\/td><td><a href=\"https:\/\/github.com\/webalys-hq\/streamline-vectors\">https:\/\/github.com\/webalys-hq\/streamline-vectors<\/a><\/td><td>Github Repository Link<\/td><\/tr><tr><td>Total<\/td><td><\/td><td>Total Number of Icons<\/td><\/tr><tr><td>Author<\/td><td>Streamline Inc<\/td><td>Author of the Icon Pack<\/td><\/tr><tr><td>Author Link<\/td><td><a href=\"http:\/\/streamlinehq.com\/\">http:\/\/streamlinehq.com\/<\/a><\/td><td>Link to the Author<\/td><\/tr><tr><td>Icon SVG<\/td><td><\/td><td>SVG for the Pack Logo, or<\/td><\/tr><tr><td>Logo<\/td><td><\/td><td>PNG or JPG for the Pack Logo<\/td><\/tr><tr><td>Icons CSV<\/td><td><\/td><td>CSV FIle of the Icons<\/td><\/tr><tr><td>Has Categories<\/td><td>Yes<\/td><td>Are categories used to group icons within a pack.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Transformations<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Name<\/strong><\/td><td><strong>Transform From<\/strong><\/td><td><strong>Transform To<\/strong><\/td><\/tr><tr><td>1<\/td><td>currentColor<\/td><td>{{IconColor}}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">PowerShell script to create csv from repository.<\/h2>\n\n\n\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-powershell\" data-line=\"\">$counter = 1\n$file = &quot;D:\\Appz\\IconManager\\Packs\\CSV\\streamline-20250503.csv&quot;\nwrite-host &quot;Streamline Vectors &quot;\n$setName = &quot;stremline&quot;\n\n# Core\n\n$path = &quot;D:\\Appz\\IconManager\\Packs\\streamline-vectors\\core\\*.svg&quot;\n$icons = get-childitem -File $path -recurse\n\n\nForEach($icon in $icons){\n    [string]$svg = Get-Content $icon.FullName;\n   # [array]$split = $icon.Name.Split(&#039;-&#039;)\n    [string]$path = $icon.DirectoryName.Split(&#039;\\&#039;)[-1]\n    $TextInfo = (Get-Culture).TextInfo\n    $string = $icon.Name.Replace(&quot;-&quot;,&quot; &quot;).Replace(&quot;.svg&quot;,&quot;&quot;).Trim()\n \n    # Capitalize the first letter of each word\n    $name = $TextInfo.ToTitleCase($string.ToLower())\n    $name\n    $path\n    $objResults = New-Object PSObject -Property @{\n        pp_id = $counter;\n        pp_name =  $name \n        pp_svg = $svg.Replace(&quot;&quot;&quot;&quot;,&quot;&#039;&quot;);\n        pp_pack = $setName\n        pp_size = &quot;14&quot;\n        pp_category = $path\n    }\n    $counter++\n    $objResults | Export-CSV $file -Append -NoTypeInformation -force\n}\n\n$path = &quot;D:\\Appz\\IconManager\\Packs\\streamline-vectors\\covid\\*.svg&quot;\n$icons = get-childitem -File $path -recurse\n\n\nForEach($icon in $icons){\n    [string]$svg = Get-Content $icon.FullName;\n   # [array]$split = $icon.Name.Split(&#039;-&#039;)\n    [string]$path = $icon.DirectoryName.Split(&#039;\\&#039;)[-1]\n    $TextInfo = (Get-Culture).TextInfo\n    $string = $icon.Name.Replace(&quot;covid-19&quot;,&quot;&quot;).Replace(&quot;covid&quot;,&quot;&quot;).Replace(&quot;-&quot;,&quot; &quot;).Replace(&quot;.svg&quot;,&quot;&quot;).Trim()\n \n    # Capitalize the first letter of each word\n    $name = $TextInfo.ToTitleCase($string.ToLower())\n    $name\n    $path\n    $objResults = New-Object PSObject -Property @{\n        pp_id = $counter;\n        pp_name =  $name\n        pp_svg = $svg.Replace(&quot;&quot;&quot;&quot;,&quot;&#039;&quot;);\n        pp_pack = $setName\n        pp_size = &quot;24&quot;\n        pp_category = $path\n    }\n    $counter++\n    $objResults | Export-CSV $file -Append -NoTypeInformation -force\n}\n\n$path = &quot;D:\\Appz\\IconManager\\Packs\\streamline-vectors\\freebies-freemojis\\*.svg&quot;\n$icons = get-childitem -File $path -recurse\n\n\nForEach($icon in $icons){\n    [string]$svg = Get-Content $icon.FullName;\n   # [array]$split = $icon.Name.Split(&#039;-&#039;)\n    [string]$path = $icon.DirectoryName.Split(&#039;\\&#039;)[-1]\n    $TextInfo = (Get-Culture).TextInfo\n    $string = $icon.Name.Replace(&quot;-&quot;,&quot; &quot;).Replace(&quot;.svg&quot;,&quot;&quot;).Trim()\n \n    # Capitalize the first letter of each word\n    $name = $TextInfo.ToTitleCase($string.ToLower())\n    $name\n    $path\n    $objResults = New-Object PSObject -Property @{\n        pp_id = $counter;\n        pp_name =  $name\n        pp_svg = $svg.Replace(&quot;&quot;&quot;&quot;,&quot;&#039;&quot;);\n        pp_pack = $setName\n        pp_size = &quot;24&quot;\n        pp_category = $path\n    }\n    $counter++\n    $objResults | Export-CSV $file -Append -NoTypeInformation -force\n}\n\n$path = &quot;D:\\Appz\\IconManager\\Packs\\streamline-vectors\\guidance\\*.svg&quot;\n$icons = get-childitem -File $path -recurse\n\n\nForEach($icon in $icons){\n    [string]$svg = Get-Content $icon.FullName;\n   # [array]$split = $icon.Name.Split(&#039;-&#039;)\n    [string]$path = $icon.DirectoryName.Split(&#039;\\&#039;)[-1]\n    $TextInfo = (Get-Culture).TextInfo\n    $string = $icon.Name.Replace(&quot;-&quot;,&quot; &quot;).Replace(&quot;.svg&quot;,&quot;&quot;).Trim()\n \n    # Capitalize the first letter of each word\n    $name = $TextInfo.ToTitleCase($string.ToLower())\n    $name\n    $path\n    $objResults = New-Object PSObject -Property @{\n        pp_id = $counter;\n        pp_name =  $name\n        pp_svg = $svg.Replace(&quot;&quot;&quot;&quot;,&quot;&#039;&quot;);\n        pp_pack = $setName\n        pp_size = &quot;24&quot;\n        pp_category = $path\n    }\n    $counter++\n    $objResults | Export-CSV $file -Append -NoTypeInformation -force\n}\n\n$path = &quot;D:\\Appz\\IconManager\\Packs\\streamline-vectors\\memes\\*.svg&quot;\n$icons = get-childitem -File $path -recurse\n\n\nForEach($icon in $icons){\n    [string]$svg = Get-Content $icon.FullName;\n   # [array]$split = $icon.Name.Split(&#039;-&#039;)\n    [string]$path = $icon.DirectoryName.Split(&#039;\\&#039;)[-1]\n    $TextInfo = (Get-Culture).TextInfo\n    $string = $icon.Name.Replace(&quot;-&quot;,&quot; &quot;).Replace(&quot;.svg&quot;,&quot;&quot;).Trim()\n \n    # Capitalize the first letter of each word\n    $name = $TextInfo.ToTitleCase($string.ToLower())\n    $name\n    $path\n    $objResults = New-Object PSObject -Property @{\n        pp_id = $counter;\n        pp_name =  $name\n        pp_svg = $svg.Replace(&quot;&quot;&quot;&quot;,&quot;&#039;&quot;);\n        pp_pack = $setName\n        pp_size = &quot;24&quot;\n        pp_category = $path\n    }\n    $counter++\n    $objResults | Export-CSV $file -Append -NoTypeInformation -force\n}\n\n$path = &quot;D:\\Appz\\IconManager\\Packs\\streamline-vectors\\nasty-icons\\nasty-icons\\*.svg&quot;\n$icons = get-childitem -File $path -recurse\n\n\nForEach($icon in $icons){\n    [string]$svg = Get-Content $icon.FullName;\n   # [array]$split = $icon.Name.Split(&#039;-&#039;)\n    [string]$path = $icon.DirectoryName.Split(&#039;\\&#039;)[-1]\n    $TextInfo = (Get-Culture).TextInfo\n    $string = $icon.Name.Replace(&quot;-&quot;,&quot; &quot;).Replace(&quot;.svg&quot;,&quot;&quot;).Trim()\n \n    # Capitalize the first letter of each word\n    $name = $TextInfo.ToTitleCase($string.ToLower())\n    $name\n    $path\n    $objResults = New-Object PSObject -Property @{\n        pp_id = $counter;\n        pp_name =  $name\n        pp_svg = $svg.Replace(&quot;&quot;&quot;&quot;,&quot;&#039;&quot;);\n        pp_pack = $setName\n        pp_size = &quot;24&quot;\n        pp_category = $path\n    }\n    $counter++\n    $objResults | Export-CSV $file -Append -NoTypeInformation -force\n}\nwrite-host &quot;Finished&quot;<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Meta Data Column Name Data Description Name Streamline Vectors Name of the Pack Shortcode stremline Shortcode of the&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":""},"wpdmcategory":[47],"class_list":["post-932","wpdmpro","type-wpdmpro","status-publish","hentry","wpdmcategory-icon-packs"],"_links":{"self":[{"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/wpdmpro\/932","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/wpdmpro"}],"about":[{"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/types\/wpdmpro"}],"author":[{"embeddable":true,"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/comments?post=932"}],"wp:attachment":[{"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/media?parent=932"}],"wp:term":[{"taxonomy":"wpdmcategory","embeddable":true,"href":"https:\/\/pensplace.co.uk\/index.php\/wp-json\/wp\/v2\/wpdmcategory?post=932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}