Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
One-liner fetches favicon from the network, converts it to base64, and prints an HTML link tag with favicon data URL. Use with discretion, favicons may be legally possessed. It's great fun to jazz local scripts and documents.

Single line data and output:
perl -MHTTP::Tiny -MMIME::Base64 -e 'print qq~<link href="data:image/x +-icon;base64,~, encode_base64(HTTP::Tiny->new->get($ARGV[0])->{conten +t},""), qq~" rel="icon" type="image/x-icon">~||die"something went wro +ng"' https://perlmonks.org/favicon.ico
Multi-line data and output:
perl -MHTTP::Tiny -MMIME::Base64 -e 'print qq~<link href="data:image/x +-icon;base64,\n~, encode_base64(HTTP::Tiny->new->get($ARGV[0])->{cont +ent},"\n"), qq~" rel="icon" type="image/x-icon">\n~||die"something w +ent wrong"' https://www.perl.com/favicon.ico
Single line data and output as a script:
#!/usr/bin/perl use strict; use warnings; use HTTP::Tiny; use MIME::Base64; push @ARGV, "https://perlmonks.org/favicon.ico" unless @ARGV; print qq~<link href="data:image/x-icon;base64,~, encode_base64(HTTP::Tiny->new->get($ARGV[0])->{content},""), qq~" rel="icon" type="image/x-icon">~ || die "something went wrong"; =head1 DESCRIPTION Perl one-liner/script fetches favicon from the network, converts it to base64, and prints an HTML link tag with favicon data URL. Use with discretion, favicons may be legally possessed. It's great fun to jazz local scripts and documents. =head1 VERSION Single line data and output version. =head1 ONE-LINER perl -MHTTP::Tiny -MMIME::Base64 -e 'print qq~<link href="data:image +/x-icon;base64,~, encode_base64(HTTP::Tiny->new->get($ARGV[0])->{cont +ent},""), qq~" rel="icon" type="image/x-icon">~||die"something went w +rong"' https://perlmonks.org/favicon.ico =head1 CAVEAT Verify the url and the link because this encodes anything, including e +rrors. =head1 AUTHOR =over =item usemodperl L<https://perlmonks.org/?node_id=1216830> =back =cut
Multi-line data and output as a script:
#!/usr/bin/perl use strict; use warnings; use HTTP::Tiny; use MIME::Base64; push @ARGV, "https://www.perl.com/favicon.ico" unless @ARGV; print qq~<link href="data:image/x-icon;base64,\n~, encode_base64(HTTP::Tiny->new->get($ARGV[0])->{content},"\n"), qq~" rel="icon" type="image/x-icon">\n~ || die "something went wrong"; =head1 DESCRIPTION Perl one-liner/script fetches favicon from the network, converts it to base64, and prints an HTML link tag with favicon data URL. Use with discretion, favicons may be legally possessed. It's great fun to jazz local scripts and documents. =head1 VERSION Multi-line data and output version. =head1 ONE-LINER perl -MHTTP::Tiny -MMIME::Base64 -e 'print qq~<link href="data:image +/x-icon;base64,\n~, encode_base64(HTTP::Tiny->new->get($ARGV[0])->{co +ntent},"\n"), qq~" rel="icon" type="image/x-icon">\n~||die"something + went wrong"' https://www.perl.com/favicon.ico =head1 CAVEAT Verify the url and the link because this encodes anything, including e +rrors. =head1 AUTHOR =over =item usemodperl L<https://perlmonks.org/?node_id=1216830> =back =cut
STOP REINVENTING WHEELS, START BUILDING SPACE ROCKETS!CPAN 🐪

In reply to Download favicon and convert to base64 HTML link data tag by usemodperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-26 01:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found