URI-1.35 > URI::data
URI-1.35
Other versions:
URI-1.54

名前

URI::data - URI that contains immediate data

URI::data - 直にデータを持っている URI

概要

 use URI;

 $u = URI->new("data:");
 $u->media_type("image/gif");
 $u->data(scalar(`cat camel.gif`));
 print "$u\n";
 open(XV, "|xv -") and print XV $u->data;

説明

The URI::data class supports URI objects belonging to the data URI scheme. The data URI scheme is specified in RFC 2397. It allows inclusion of small data items as "immediate" data, as if it had been included externally. Examples:

URI::data クラスは data URI スキームに所属する URI オブジェクトを サポートします。 data URI スキームは RFC 2397 で定義されます。 それは小さなデータ要素を "immediate" データとして、まるで外部に 含まれているかのように、含まれるようにします。 例:

  data:,Perl%20is%20good

  data:image/gif;base64,R0lGODdhIAAgAIAAAAAAAPj8+CwAAAAAI
    AAgAAAClYyPqcu9AJyCjtIKc5w5xP14xgeO2tlY3nWcajmZZdeJcG
    Kxrmimms1KMTa1Wg8UROx4MNUq1HrycMjHT9b6xKxaFLM6VRKzI+p
    KS9XtXpcbdun6uWVxJXA8pNPkdkkxhxc21LZHFOgD2KMoQXa2KMWI
    JtnE2KizVUkYJVZZ1nczBxXlFopZBtoJ2diXGdNUymmJdFMAADs=

URI objects belonging to the data scheme support the common methods (described in URI) and the following two scheme-specific methods:

dataスキームに所属するURI オブジェクトは(URIで説明される)共通メソッドをサポートし、以下の2つのスキーム特有のメソッドをサポートします:

$uri->media_type( [$new_media_type] )

Can be used to get or set the media type specified in the URI. If no media type is specified, then the default "text/plain;charset=US-ASCII" is returned.

URI で指定されるメディアタイプの取得または設定に使うことが出来ます。 なにもメディアタイプが指定されなければ、デフォルトの "text/plain;charset=US-ASCII" が返されます。

$uri->data( [$new_data] )

Can be used to get or set the data contained in the URI. The data is passed unescaped (in binary form). The decision about whether to base64 encode the data in the URI is taken automatically, based on the encoding that produces the shorter URI string.

このメソッドは URI に含まれるデータの取得または設定に使うことができます。 データはエスケープされることなく (バイナリ形式で) 渡されます。 URI のなかのデータを base64 エンコードするかどうかは、どのエンコードが 最も短い URI 文字列を生成するかをベースに自動的に決められます。

SEE ALSO

URI

コピーライト

Copyright 1995-1998 Gisle Aas.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.