タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

Base64に関するtwodollarzのブックマーク (3)

  • uuencode - Wikipedia

    この記事は検証可能な参考文献や出典が全く示されていないか、不十分です。 出典を追加して記事の信頼性向上にご協力ください。(このテンプレートの使い方) 出典検索?: "Uuencode" – ニュース · 書籍 · スカラー · CiNii · J-STAGE · NDL · dlib.jp · ジャパンサーチ · TWL (2023年1月) uuencodeは、バイナリデータをテキストデータに変換するUNIX及びUnix系OSのコマンド。或いは、それによって生成されるテキストデータのフォーマット。デコードにはuudecodeコマンドを用いる。電子メールやネットニュースで多用され、現在でも多くのメーラーが対応しているが、MIMEのBase64の方が一般的になっている。 初期のUnix系OSではUUCPと呼ばれるプロトコルで電子メールやネットニュースの配送が行なわれた。これらはテキストデータし

  • How to save a base64 string as an image using ruby

    I'm integrating my Ruby on Rails app with a usps shipping system. Once you make a postage request, you pay for that postage and it's nonrefundable. Postage requests will return you an xml response including a base64 string, which is the shipping label. I'm able to render the shipping label in a view, however to make it foolproof, I would like to be able to save that base64 string as an image on my

    How to save a base64 string as an image using ruby
  • module Base64 (Ruby 1.8.7)

    クラスの継承リスト: Base64 要約 Base64 エンコード / デコードするためのメソッドを定義したモジュールです。 目次 モジュール関数 b64encode decode64 decode_b encode64 モジュール関数 b64encode(bin, len = 60) -> ()[permalink][rdoc] 文字列 bin をエンコードし、len の長さで折り返し、表示します。 表示までしてしまうのはサンプルだからです。 decode64(str) -> String[permalink][rdoc] Base64エンコードされた文字列strをデコードします。 [PARAM] str: デコードしたい文字列です。 decode_b(str) -> String[permalink][rdoc] [RFC2047] で定義されている encoded-word を含む

  • 1