diff --git a/README.md b/README.md index 0482c77..84c2349 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,21 @@ For reference on how to use any of our assets please visit [manual.codebar.io/br If you have any questions about the fair usage of these assets please email hello@codebar.io. +### Re-creating the logos + +If you changed a logo or added another one in SVG format, you can automatically create rasterized versions using the [Makefile](logo/Makefile). + +To create the images, make, imagemagick and inkscape need to be installed. On Mac, make should come with [XCode](https://developer.apple.com/xcode/), imagemagick can be installed using brew (`brew install imagemagick`) and inkscape is available as a package from https://inkscape.org/ + +On Linux, all three applications should be available in your package-manager, where `make` comes with `build-essentials` on Ubuntu & `base-devel` on Arch + +If all these applications are installed, running + +``` +make all +``` + +in `logo/` should recreate rasterized versions for all SVGs that have changed. If you added a new logo, a new PHONY recipe needs to be created like for [`codebar-logo`](logo/Makefile#L30-L31) and that recipe needs to be added to the [`all` recipe](logo/Makefile#L24). + + ##### All content in this repo is Copyright © 2019 codebar Ltd, 10791813. All rights reserved. diff --git a/logo/Makefile b/logo/Makefile new file mode 100644 index 0000000..724ddb2 --- /dev/null +++ b/logo/Makefile @@ -0,0 +1,58 @@ +# This Makefile creates the logo in different formats based on the svg version +# in svg/codebar-logo.svg. A Makefile specifies how a specific file should +# be created. +# +# To create the images, make and inkscape need to be installed. +# On Mac, make should come with XCode (https://developer.apple.com/xcode/), +# and inkscape is available as a package from https://inkscape.org/ +# +# On Linux, all three applications should be available in your package-manager +# where `make` comes with `build-essentials` on Ubuntu & `base-devel` on Arch +# +# If you want to update all rasterized versions, issuing `make all` should +# re-create all files. If Make reports `make: Nothing to be done for 'all'.`, +# that means the source file (the svg) hasn't changed and thus Make does not +# need to recreate the rasterized versions. +# +# If you want to force re-creation, issue `make clean`, which will delete all +# rasterized versions and then will force `make all` to re-create them. + +# Create all derived formats using the recipes below +all: codebar-logo codebar-logo-banner + +## the next tasks are marked as .PHONY because they don't create a specific file +## (https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html) + +# This recipe will create all derived formats for codebar-logo +.PHONY: codebar-logo +codebar-logo: eps/codebar-logo.eps png/codebar-logo-72dpi.png png/codebar-logo-300dpi.png + +# This recipe will create all derived formats for codebar-logo-banner +.PHONY: codebar-logo-banner +codebar-logo-banner: eps/codebar-logo-banner.eps png/codebar-logo-banner-72dpi.png png/codebar-logo-banner-300dpi.png + +# clean will delete all derived files. Usually you won't need this. +.PHONY: clean +clean: + rm eps/*.eps + rm png/*.png + +# Create an EPS format in eps/ of a file that exists in svg/ +# If you invoke `make eps/codebar-logo.eps` Make will look for +# a file called svg/codebar-logo.svg (or another recipe that creates said file) +# it will then substitute $@ with the target filename (eps/codebar-logo.eps) +# and $< with the source filename (svg/codebar-logo.svg). +# +# This recipe thus reads as: In order to create a file matching eps/%.eps, +# I need a corresponding file in svg/ to exist and will call this command to +# create the eps file. +eps/%.eps: svg/%.svg + inkscape -z -E $@ $< + +# Creates a 300dpi rasterized version of an svg in png format +png/%-300dpi.png: svg/%.svg + inkscape -z -e $@ -d 300 $< + +png/%-72dpi.png: svg/%.svg + inkscape -z -e $@ -d 72 $< + diff --git a/logo/eps/codebar-logo-banner.eps b/logo/eps/codebar-logo-banner.eps new file mode 100644 index 0000000..acc99e0 --- /dev/null +++ b/logo/eps/codebar-logo-banner.eps @@ -0,0 +1,198 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.16.0 (https://cairographics.org) +%%CreationDate: Sat Feb 9 17:04:55 2019 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 0 0 276 75 +%%EndComments +%%BeginProlog +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_data_source { + CairoDataIndex CairoData length lt + { CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def } + { () } ifelse +} def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 0 0 276 75 +%%EndPageSetup +q 0 0 276 75 rectclip +1 0 0 -1 0 75 cm q +0 1 0.8 rg +261.031 54.527 m 252.938 54.527 246.352 47.941 246.352 39.848 c 246.352 + 31.758 252.938 25.168 261.031 25.168 c 269.121 25.168 275.711 31.758 275.711 + 39.848 c 275.711 47.941 269.121 54.527 261.031 54.527 c h +261.031 26.508 m 253.672 26.508 247.688 32.492 247.688 39.848 c 247.688 + 47.203 253.672 53.191 261.031 53.191 c 268.387 53.191 274.371 47.203 274.371 + 39.848 c 274.371 32.492 268.387 26.508 261.031 26.508 c h +261.031 26.508 m f +1 0 0.4 rg +244.68 56.836 m 244.512 56.836 244.344 56.77 244.211 56.633 c 227.895 40.316 + l 227.758 40.184 227.691 40.016 227.691 39.848 c 227.691 39.68 227.758 +39.516 227.895 39.379 c 244.211 23.062 l 244.477 22.793 244.879 22.793 245.148 + 23.062 c 261.465 39.379 l 261.73 39.648 261.73 40.051 261.465 40.316 c +245.18 56.633 l 245.047 56.77 244.879 56.836 244.68 56.836 c h +229.332 39.848 m 244.711 55.23 l 260.094 39.848 l 244.711 24.465 l h +229.332 39.848 m f +0.294118 0.686275 1 rg +251.902 74.223 m 251.801 74.223 251.668 74.188 251.566 74.121 c 237.625 + 66.062 l 237.422 65.93 237.289 65.73 237.289 65.496 c 237.289 49.41 l 237.289 + 49.176 237.422 48.945 237.625 48.844 c 251.566 40.816 l 251.77 40.684 252.035 + 40.684 252.234 40.816 c 266.18 48.844 l 266.379 48.977 266.516 49.176 266.516 + 49.41 c 266.516 65.496 l 266.516 65.73 266.379 65.965 266.18 66.062 c 252.234 + 74.09 l 252.102 74.188 252 74.223 251.902 74.223 c h +238.625 65.129 m 251.902 72.785 l 265.176 65.129 l 265.176 49.812 l 251.902 + 42.156 l 238.625 49.812 l h +238.625 65.129 m f +0.0980392 0.952941 0.745098 rg +261.031 54.527 m 260.664 54.527 260.359 54.227 260.359 53.859 c 260.359 + 53.492 260.664 53.191 261.031 53.191 c 268.387 53.191 274.371 47.203 274.371 + 39.848 c 274.371 39.48 274.672 39.18 275.039 39.18 c 275.41 39.18 275.711 + 39.48 275.711 39.848 c 275.711 47.941 269.121 54.527 261.031 54.527 c h +261.031 54.527 m f +1 0.0117647 0.415686 rg +253.473 48.074 m 253.305 48.074 253.137 48.008 253.004 47.875 c 252.738 + 47.605 252.738 47.203 253.004 46.938 c 260.527 39.414 l 260.797 39.145 +261.195 39.145 261.465 39.414 c 261.73 39.68 261.73 40.082 261.465 40.352 + c 253.941 47.875 l 253.809 48.008 253.641 48.074 253.473 48.074 c h +253.473 48.074 m f +0.294118 0.686275 1 rg +0 28.648 m 0 28.5 l 0 19.949 7 12.449 16 12.449 c 21.773 12.449 25.387 +14.926 28.312 17.852 c 28.465 18 28.465 18.227 28.312 18.375 c 26.695 20.023 + l 26.543 20.176 26.309 20.176 26.156 20.023 c 23.539 17.477 20.465 15.227 + 16 15.227 c 8.848 15.227 3.309 21.074 3.309 28.352 c 3.309 28.5 l 3.309 + 35.852 9 41.773 16.234 41.773 c 20.539 41.773 23.926 39.676 26.543 36.977 + c 26.695 36.824 26.926 36.824 27.078 36.977 c 28.617 38.25 l 28.773 38.398 + 28.773 38.625 28.617 38.773 c 25.465 42.148 21.695 44.551 16.078 44.551 + c 7 44.551 0 37.199 0 28.648 c h +0 28.648 m f +33.004 28.648 m 33.004 28.5 l 33.004 19.949 39.852 12.449 49.16 12.449 +c 58.469 12.449 65.238 19.801 65.238 28.352 c 65.238 28.5 l 65.238 37.051 + 58.391 44.551 49.082 44.551 c 39.773 44.551 33.004 37.199 33.004 28.648 + c h +62.008 28.648 m 62.008 28.5 l 62.008 21.148 56.312 15.227 49.082 15.227 + c 41.621 15.227 36.312 21.148 36.312 28.352 c 36.312 28.5 l 36.312 35.852 + 42.004 41.773 49.234 41.773 c 56.621 41.773 62.008 35.852 62.008 28.648 + c h +62.008 28.648 m f +70.699 28.648 m 70.699 28.5 l 70.699 18.523 78.395 12.449 85.934 12.449 + c 91.703 12.449 95.547 15.375 98.164 18.824 c 98.395 19.125 98.855 18.977 + 98.855 18.602 c 98.855 0.375 l 98.855 0.148 99.012 0 99.242 0 c 101.473 + 0 l 101.703 0 101.855 0.148 101.855 0.375 c 101.855 43.426 l 101.855 43.648 + 101.703 43.801 101.473 43.801 c 99.242 43.801 l 99.012 43.801 98.855 43.648 + 98.855 43.426 c 98.855 38.176 l 98.855 37.801 98.395 37.648 98.164 37.949 + c 95.473 41.551 91.625 44.551 85.934 44.551 c 78.395 44.551 70.699 38.625 + 70.699 28.648 c h +99.086 28.574 m 99.086 28.426 l 99.086 20.551 92.777 15.301 86.316 15.301 + c 79.469 15.301 74.008 20.176 74.008 28.352 c 74.008 28.5 l 74.008 36.523 + 79.699 41.699 86.316 41.699 c 92.777 41.699 99.086 36.375 99.086 28.574 + c h +99.086 28.574 m f +108.703 28.574 m 108.703 28.426 l 108.703 19.574 115.09 12.449 123.629 +12.449 c 132.398 12.449 138.016 19.426 138.016 28.5 c 138.016 28.875 138.016 + 29.102 138.016 29.324 c 138.016 29.551 137.859 29.699 137.629 29.699 c +112.395 29.699 l 112.164 29.699 112.012 29.926 112.012 30.148 c 112.703 +37.5 118.242 41.773 124.32 41.773 c 129.012 41.773 132.32 39.824 134.859 + 37.199 c 135.016 37.051 135.246 37.051 135.398 37.199 c 136.938 38.477 +l 137.09 38.625 137.09 38.852 136.938 39 c 133.781 42.227 130.09 44.477 +124.242 44.477 c 115.859 44.551 108.703 38.102 108.703 28.574 c h +134.32 27.074 m 134.551 27.074 134.707 26.852 134.707 26.699 c 134.168 +20.699 130.551 15.227 123.473 15.227 c 117.398 15.227 112.629 20.102 111.934 + 26.699 c 111.934 26.926 112.09 27.148 112.32 27.148 c 134.32 27.148 l h +134.32 27.074 m f +146.785 38.398 m 146.785 43.426 l 146.785 43.648 146.629 43.801 146.398 + 43.801 c 144.168 43.801 l 143.938 43.801 143.785 43.648 143.785 43.426 +c 143.785 0.375 l 143.785 0.148 143.938 0 144.168 0 c 146.398 0 l 146.629 + 0 146.785 0.148 146.785 0.375 c 146.785 18.824 l 146.785 19.199 147.246 + 19.352 147.477 19.051 c 150.168 15.449 154.016 12.449 159.707 12.449 c +167.25 12.449 174.941 18.375 174.941 28.352 c 174.941 28.5 l 174.941 38.477 + 167.25 44.551 159.707 44.551 c 153.938 44.551 150.094 41.625 147.477 38.176 + c 147.246 37.875 146.785 38.023 146.785 38.398 c h +171.711 28.648 m 171.711 28.5 l 171.711 20.477 166.016 15.301 159.402 15.301 + c 152.863 15.301 146.629 20.625 146.629 28.426 c 146.629 28.574 l 146.629 + 36.449 152.938 41.699 159.402 41.699 c 166.172 41.699 171.711 36.898 171.711 + 28.648 c h +171.711 28.648 m f +178.711 34.949 m 178.711 34.801 l 178.711 28.426 184.328 24.824 192.406 + 24.824 c 196.559 24.824 199.48 25.273 202.328 26.023 c 202.559 26.102 202.789 + 25.875 202.789 25.648 c 202.789 24.824 l 202.789 18.676 198.945 15.449 +192.48 15.449 c 188.789 15.449 185.789 16.352 183.02 17.699 c 182.789 17.773 + 182.559 17.699 182.48 17.477 c 181.711 15.602 l 181.633 15.375 181.711 +15.227 181.941 15.074 c 185.25 13.574 188.559 12.602 192.711 12.602 c 196.945 + 12.602 200.328 13.727 202.637 15.977 c 204.715 18 205.867 20.852 205.867 + 24.602 c 205.867 43.273 l 205.867 43.5 205.715 43.648 205.484 43.648 c +203.328 43.648 l 203.098 43.648 202.945 43.5 202.945 43.273 c 202.945 38.551 + l 200.789 41.477 196.945 44.398 190.941 44.398 c 184.941 44.551 178.711 + 41.324 178.711 34.949 c h +202.867 32.398 m 202.867 29.25 l 202.867 29.102 202.789 28.949 202.559 +28.875 c 199.945 28.199 196.559 27.602 192.172 27.602 c 185.559 27.602 181.863 + 30.449 181.863 34.727 c 181.863 34.875 l 181.863 39.301 186.172 41.926 +190.941 41.926 c 197.406 41.773 202.867 37.949 202.867 32.398 c h +202.867 32.398 m f +215.945 31.273 m 215.945 43.426 l 215.945 43.648 215.793 43.801 215.562 + 43.801 c 213.328 43.801 l 213.098 43.801 212.945 43.648 212.945 43.426 +c 212.945 13.574 l 212.945 13.352 213.098 13.199 213.328 13.199 c 215.562 + 13.199 l 215.793 13.199 215.945 13.352 215.945 13.574 c 215.945 20.324 +l 215.945 20.699 216.484 20.852 216.637 20.477 c 219.254 15.898 223.945 +12.676 229.41 12.676 c 229.641 12.676 229.793 12.824 229.793 13.051 c 229.793 + 15.523 l 229.793 15.75 229.641 15.898 229.41 15.898 c 217.867 16.199 215.945 + 25.426 215.945 31.273 c h +215.945 31.273 m f +Q Q +showpage +%%Trailer +end +%%EOF diff --git a/logo/eps/codebar-logo.eps b/logo/eps/codebar-logo.eps new file mode 100644 index 0000000..dab4309 --- /dev/null +++ b/logo/eps/codebar-logo.eps @@ -0,0 +1,203 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: cairo 1.16.0 (https://cairographics.org) +%%CreationDate: Sat Feb 9 17:04:54 2019 +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%BoundingBox: 0 0 225 180 +%%EndComments +%%BeginProlog +50 dict begin +/q { gsave } bind def +/Q { grestore } bind def +/cm { 6 array astore concat } bind def +/w { setlinewidth } bind def +/J { setlinecap } bind def +/j { setlinejoin } bind def +/M { setmiterlimit } bind def +/d { setdash } bind def +/m { moveto } bind def +/l { lineto } bind def +/c { curveto } bind def +/h { closepath } bind def +/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto + 0 exch rlineto 0 rlineto closepath } bind def +/S { stroke } bind def +/f { fill } bind def +/f* { eofill } bind def +/n { newpath } bind def +/W { clip } bind def +/W* { eoclip } bind def +/BT { } bind def +/ET { } bind def +/BDC { mark 3 1 roll /BDC pdfmark } bind def +/EMC { mark /EMC pdfmark } bind def +/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def +/Tj { show currentpoint cairo_store_point } bind def +/TJ { + { + dup + type /stringtype eq + { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse + } forall + currentpoint cairo_store_point +} bind def +/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore + cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def +/Tf { pop /cairo_font exch def /cairo_font_matrix where + { pop cairo_selectfont } if } bind def +/Td { matrix translate cairo_font_matrix matrix concatmatrix dup + /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point + /cairo_font where { pop cairo_selectfont } if } bind def +/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def + cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def +/g { setgray } bind def +/rg { setrgbcolor } bind def +/d1 { setcachedevice } bind def +/cairo_data_source { + CairoDataIndex CairoData length lt + { CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def } + { () } ifelse +} def +/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def +/cairo_image { image cairo_flush_ascii85_file } def +/cairo_imagemask { imagemask cairo_flush_ascii85_file } def +%%EndProlog +%%BeginSetup +%%EndSetup +%%Page: 1 1 +%%BeginPageSetup +%%PageBoundingBox: 0 0 225 180 +%%EndPageSetup +q 0 0 225 180 rectclip +1 0 0 -1 0 180 cm q +0 1 0.8 rg +132.977 71.023 m 114.824 71.023 100.051 56.25 100.051 38.102 c 100.051 +19.949 114.824 5.176 132.977 5.176 c 151.125 5.176 165.898 19.949 165.898 + 38.102 c 165.898 56.25 151.125 71.023 132.977 71.023 c h +132.977 8.176 m 116.477 8.176 103.051 21.602 103.051 38.102 c 103.051 54.602 + 116.477 68.023 132.977 68.023 c 149.477 68.023 162.898 54.602 162.898 38.102 + c 162.898 21.602 149.477 8.176 132.977 8.176 c h +132.977 8.176 m f +1 0 0.4 rg +96.301 76.199 m 95.926 76.199 95.551 76.051 95.25 75.75 c 58.648 39.148 + l 58.352 38.852 58.199 38.477 58.199 38.102 c 58.199 37.727 58.352 37.352 + 58.648 37.051 c 95.25 0.449 l 95.852 -0.148 96.75 -0.148 97.352 0.449 c + 133.949 37.051 l 134.551 37.648 134.551 38.551 133.949 39.148 c 97.426 +75.75 l 97.125 76.051 96.75 76.199 96.301 76.199 c h +61.875 38.102 m 96.375 72.602 l 130.875 38.102 l 96.375 3.602 l h +61.875 38.102 m f +0.294118 0.686275 1 rg +112.5 115.199 m 112.273 115.199 111.977 115.125 111.75 114.977 c 80.477 + 96.898 l 80.023 96.602 79.727 96.148 79.727 95.625 c 79.727 59.551 l 79.727 + 59.023 80.023 58.5 80.477 58.273 c 111.75 40.273 l 112.199 39.977 112.801 + 39.977 113.25 40.273 c 144.523 58.273 l 144.977 58.574 145.273 59.023 145.273 + 59.551 c 145.273 95.625 l 145.273 96.148 144.977 96.676 144.523 96.898 +c 113.25 114.898 l 112.949 115.125 112.727 115.199 112.5 115.199 c h +82.727 94.801 m 112.5 111.977 l 142.273 94.801 l 142.273 60.449 l 112.5 + 43.273 l 82.727 60.449 l h +82.727 94.801 m f +0.0980392 0.952941 0.745098 rg +132.977 71.023 m 132.148 71.023 131.477 70.352 131.477 69.523 c 131.477 + 68.699 132.148 68.023 132.977 68.023 c 149.477 68.023 162.898 54.602 162.898 + 38.102 c 162.898 37.273 163.574 36.602 164.398 36.602 c 165.227 36.602 +165.898 37.273 165.898 38.102 c 165.898 56.25 151.125 71.023 132.977 71.023 + c h +132.977 71.023 m f +1 0.0117647 0.415686 rg +116.023 56.551 m 115.648 56.551 115.273 56.398 114.977 56.102 c 114.375 + 55.5 114.375 54.602 114.977 54 c 131.852 37.125 l 132.449 36.523 133.352 + 36.523 133.949 37.125 c 134.551 37.727 134.551 38.625 133.949 39.227 c +117.074 56.102 l 116.773 56.398 116.398 56.551 116.023 56.551 c h +116.023 56.551 m f +0.294118 0.686275 1 rg +0 164.102 m 0 163.949 l 0 155.398 6.824 147.898 15.602 147.898 c 21.227 + 147.898 24.75 150.375 27.602 153.301 c 27.75 153.449 27.75 153.676 27.602 + 153.824 c 26.023 155.477 l 25.875 155.625 25.648 155.625 25.5 155.477 c + 22.949 152.926 19.949 150.676 15.602 150.676 c 8.625 150.676 3.227 156.523 + 3.227 163.801 c 3.227 163.949 l 3.227 171.301 8.773 177.227 15.824 177.227 + c 20.023 177.227 23.324 175.125 25.875 172.426 c 26.023 172.273 26.25 172.273 + 26.398 172.426 c 27.898 173.699 l 28.051 173.852 28.051 174.074 27.898 +174.227 c 24.824 177.602 21.148 180 15.676 180 c 6.824 180 0 172.648 0 164.102 + c h +0 164.102 m f +32.176 164.102 m 32.176 163.949 l 32.176 155.398 38.852 147.898 47.926 +147.898 c 57 147.898 63.602 155.25 63.602 163.801 c 63.602 163.949 l 63.602 + 172.5 56.926 180 47.852 180 c 38.773 180 32.176 172.648 32.176 164.102 +c h +60.449 164.102 m 60.449 163.949 l 60.449 156.602 54.898 150.676 47.852 +150.676 c 40.574 150.676 35.398 156.602 35.398 163.801 c 35.398 163.949 +l 35.398 171.301 40.949 177.227 48 177.227 c 55.199 177.227 60.449 171.301 + 60.449 164.102 c h +60.449 164.102 m f +68.926 164.102 m 68.926 163.949 l 68.926 153.977 76.426 147.898 83.773 +147.898 c 89.398 147.898 93.148 150.824 95.699 154.273 c 95.926 154.574 +96.375 154.426 96.375 154.051 c 96.375 135.824 l 96.375 135.602 96.523 135.449 + 96.75 135.449 c 98.926 135.449 l 99.148 135.449 99.301 135.602 99.301 135.824 + c 99.301 178.875 l 99.301 179.102 99.148 179.25 98.926 179.25 c 96.75 179.25 + l 96.523 179.25 96.375 179.102 96.375 178.875 c 96.375 173.625 l 96.375 + 173.25 95.926 173.102 95.699 173.398 c 93.074 177 89.324 180 83.773 180 + c 76.426 180 68.926 174.074 68.926 164.102 c h +96.602 164.023 m 96.602 163.875 l 96.602 156 90.449 150.75 84.148 150.75 + c 77.477 150.75 72.148 155.625 72.148 163.801 c 72.148 163.949 l 72.148 + 171.977 77.699 177.148 84.148 177.148 c 90.449 177.148 96.602 171.824 96.602 + 164.023 c h +96.602 164.023 m f +105.977 164.023 m 105.977 163.875 l 105.977 155.023 112.199 147.898 120.523 + 147.898 c 129.074 147.898 134.551 154.875 134.551 163.949 c 134.551 164.324 + 134.551 164.551 134.551 164.773 c 134.551 165 134.398 165.148 134.176 165.148 + c 109.574 165.148 l 109.352 165.148 109.199 165.375 109.199 165.602 c 109.875 + 172.949 115.273 177.227 121.199 177.227 c 125.773 177.227 129 175.273 131.477 + 172.648 c 131.625 172.5 131.852 172.5 132 172.648 c 133.5 173.926 l 133.648 + 174.074 133.648 174.301 133.5 174.449 c 130.426 177.676 126.824 179.926 + 121.125 179.926 c 112.949 180 105.977 173.551 105.977 164.023 c h +130.949 162.523 m 131.176 162.523 131.324 162.301 131.324 162.148 c 130.801 + 156.148 127.273 150.676 120.375 150.676 c 114.449 150.676 109.801 155.551 + 109.125 162.148 c 109.125 162.375 109.273 162.602 109.5 162.602 c 130.949 + 162.602 l h +130.949 162.523 m f +143.102 173.852 m 143.102 178.875 l 143.102 179.102 142.949 179.25 142.727 + 179.25 c 140.551 179.25 l 140.324 179.25 140.176 179.102 140.176 178.875 + c 140.176 135.824 l 140.176 135.602 140.324 135.449 140.551 135.449 c 142.727 + 135.449 l 142.949 135.449 143.102 135.602 143.102 135.824 c 143.102 154.273 + l 143.102 154.648 143.551 154.801 143.773 154.5 c 146.398 150.898 150.148 + 147.898 155.699 147.898 c 163.051 147.898 170.551 153.824 170.551 163.801 + c 170.551 163.949 l 170.551 173.926 163.051 180 155.699 180 c 150.074 180 + 146.324 177.074 143.773 173.625 c 143.551 173.324 143.102 173.477 143.102 + 173.852 c h +167.398 164.102 m 167.398 163.949 l 167.398 155.926 161.852 150.75 155.398 + 150.75 c 149.023 150.75 142.949 156.074 142.949 163.875 c 142.949 164.023 + l 142.949 171.898 149.102 177.148 155.398 177.148 c 162 177.148 167.398 + 172.352 167.398 164.102 c h +167.398 164.102 m f +174.227 170.398 m 174.227 170.25 l 174.227 163.875 179.699 160.273 187.574 + 160.273 c 191.625 160.273 194.477 160.727 197.25 161.477 c 197.477 161.551 + 197.699 161.324 197.699 161.102 c 197.699 160.273 l 197.699 154.125 193.949 + 150.898 187.648 150.898 c 184.051 150.898 181.125 151.801 178.426 153.148 + c 178.199 153.227 177.977 153.148 177.898 152.926 c 177.148 151.051 l 177.074 + 150.824 177.148 150.676 177.375 150.523 c 180.602 149.023 183.824 148.051 + 187.875 148.051 c 192 148.051 195.301 149.176 197.551 151.426 c 199.574 + 153.449 200.699 156.301 200.699 160.051 c 200.699 178.727 l 200.699 178.949 + 200.551 179.102 200.324 179.102 c 198.227 179.102 l 198 179.102 197.852 + 178.949 197.852 178.727 c 197.852 174 l 195.75 176.926 192 179.852 186.148 + 179.852 c 180.301 180 174.227 176.773 174.227 170.398 c h +197.773 167.852 m 197.773 164.699 l 197.773 164.551 197.699 164.398 197.477 + 164.324 c 194.926 163.648 191.625 163.051 187.352 163.051 c 180.898 163.051 + 177.301 165.898 177.301 170.176 c 177.301 170.324 l 177.301 174.75 181.5 + 177.375 186.148 177.375 c 192.449 177.227 197.773 173.398 197.773 167.852 + c h +197.773 167.852 m f +210.523 166.727 m 210.523 178.875 l 210.523 179.102 210.375 179.25 210.148 + 179.25 c 207.977 179.25 l 207.75 179.25 207.602 179.102 207.602 178.875 + c 207.602 149.023 l 207.602 148.801 207.75 148.648 207.977 148.648 c 210.148 + 148.648 l 210.375 148.648 210.523 148.801 210.523 149.023 c 210.523 155.773 + l 210.523 156.148 211.051 156.301 211.199 155.926 c 213.75 151.352 218.324 + 148.125 223.648 148.125 c 223.875 148.125 224.023 148.273 224.023 148.5 + c 224.023 150.977 l 224.023 151.199 223.875 151.352 223.648 151.352 c 212.398 + 151.648 210.523 160.875 210.523 166.727 c h +210.523 166.727 m f +Q Q +showpage +%%Trailer +end +%%EOF diff --git a/logo/png/codebar-logo-300dpi.png b/logo/png/codebar-logo-300dpi.png new file mode 100644 index 0000000..bb7750b Binary files /dev/null and b/logo/png/codebar-logo-300dpi.png differ diff --git a/logo/png/codebar-logo-72dpi.png b/logo/png/codebar-logo-72dpi.png new file mode 100644 index 0000000..c2b8efd Binary files /dev/null and b/logo/png/codebar-logo-72dpi.png differ diff --git a/logo/png/codebar-logo-banner-300dpi.png b/logo/png/codebar-logo-banner-300dpi.png new file mode 100644 index 0000000..cd08c76 Binary files /dev/null and b/logo/png/codebar-logo-banner-300dpi.png differ diff --git a/logo/png/codebar-logo-banner-72dpi.png b/logo/png/codebar-logo-banner-72dpi.png new file mode 100644 index 0000000..8947bc0 Binary files /dev/null and b/logo/png/codebar-logo-banner-72dpi.png differ diff --git a/logo/png/website-logo.png b/logo/png/website-logo.png deleted file mode 100644 index ba919ed..0000000 Binary files a/logo/png/website-logo.png and /dev/null differ diff --git a/logo/svg/codebar-logo-banner.svg b/logo/svg/codebar-logo-banner.svg new file mode 100644 index 0000000..0850a38 --- /dev/null +++ b/logo/svg/codebar-logo-banner.svg @@ -0,0 +1,132 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + \ No newline at end of file