-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathannotateimage.xml
155 lines (141 loc) · 3.76 KB
/
annotateimage.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 0ffb9c9fc8f4bf1589a1a573644e1c23b6b451d1 Maintainer: nilgun Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="imagick.annotateimage">
<refnamediv>
<refname>Imagick::annotateImage</refname>
<refpurpose>Görüntüye bir metin çizer</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier>
<type>bool</type><methodname>Imagick::annotateImage</methodname>
<methodparam><type>ImagickDraw</type><parameter>çizim_ayarı</parameter></methodparam>
<methodparam><type>float</type><parameter>x</parameter></methodparam>
<methodparam><type>float</type><parameter>y</parameter></methodparam>
<methodparam><type>float</type><parameter>açı</parameter></methodparam>
<methodparam><type>string</type><parameter>metin</parameter></methodparam>
</methodsynopsis>
<para>
Görüntüye bir metin çizer.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>çizim_ayarı</parameter></term>
<listitem>
<para>
Metni çizmekte kullanılacak ayarları içeren
<classname>ImagickDraw</classname> nesnesi.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>x</parameter></term>
<listitem>
<para>
Metnin ilk harfinin taban çizgisi başlangıcının X konumu.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>y</parameter></term>
<listitem>
<para>
Metnin ilk harfinin taban çizgisi başlangıcının Y konumu.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>açı</parameter></term>
<listitem>
<para>
Metnin yazılacağı açı.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>metin</parameter></term>
<listitem>
<para>
Çizilecek dizge.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&imagick.return.success;
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>- <function>Imagick::annotateImage</function> örneği</title>
<para>
Boş bir tuvale bir metin çizelim.
</para>
<programlisting role="php">
<![CDATA[
<?php
// Nesneleri oluştur
$image = new Imagick();
$draw = new ImagickDraw();
$pixel = new ImagickPixel( 'gray' );
// Yeni görüntü
$image->newImage(800, 75, $pixel);
// Metin siyah olsun
$draw->setFillColor('black');
// Yazı tipi özelliklerini belirt
$draw->setFont('Bookman-DemiItalic');
$draw->setFontSize( 30 );
// Metni çiz
$image->annotateImage($draw, 10, 45, 0, 'The quick brown fox jumps over the lazy dog');
// Resim biçemi
$image->setImageFormat('png');
// Resmi çıktıla
header('Content-Type: image/png');
echo $image;
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>ImagickDraw::annotation</function></member>
<member><function>ImagickDraw::setFont</function></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->