add stamp text logo

This commit is contained in:
Alex Turchyn
2025-02-06 19:38:27 +02:00
committed by Pete Matsyburka
parent 83b6ce8574
commit 439df4879c
3 changed files with 9 additions and 1 deletions
+8
View File
@@ -24,6 +24,10 @@ module PdfIcons
StringIO.new(logo_new_data)
end
def stamp_logo_io
StringIO.new(stamp_logo_data)
end
def check_data
@check_data ||= PATH.join('check.png').read
end
@@ -39,4 +43,8 @@ module PdfIcons
def logo_new_data
@logo_new_data ||= PATH.join('logo_new.png').read
end
def stamp_logo_data
@stamp_logo_data ||= PATH.join('stamp-logo.png').read
end
end
Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

+1 -1
View File
@@ -98,7 +98,7 @@ module Submitters
end
def load_logo(_submitter)
PdfIcons.logo_io
PdfIcons.stamp_logo_io
end
end
end