summaryrefslogtreecommitdiffstats
path: root/doc/html/tqimage.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/html/tqimage.html
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqimage.html')
-rw-r--r--doc/html/tqimage.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tqimage.html b/doc/html/tqimage.html
index 3149642e9..a7b5f31c5 100644
--- a/doc/html/tqimage.html
+++ b/doc/html/tqimage.html
@@ -219,7 +219,7 @@ with <a href="#load">load</a>() (or in the constructor) or from an array of data
<a href="#inputFormatList">inputFormatList</a>() and <a href="#outputFormatList">outputFormatList</a>().
<p> Strings of text may be added to images using <a href="#setText">setText</a>().
<p> The TQImage class uses explicit <a href="shclass.html">sharing</a>,
-similar to that used by <a href="ntqmemarray.html">TQMemArray</a>.
+similar to that used by <a href="tqmemarray.html">TQMemArray</a>.
<p> New image formats can be added as <a href="plugins-howto.html">plugins</a>.
<p> <p>See also <a href="tqimageio.html">TQImageIO</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="shclass.html">Shared Classes</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="shared.html">Implicitly and Explicitly Shared Classes</a>.
@@ -304,7 +304,7 @@ by using an unusual declaration:
slightly more efficient (e.g. when the code is in a shared
library) and ROMable when the application is to be stored in ROM.
-<h3 class=fn><a name="TQImage-6"></a>TQImage::TQImage ( const&nbsp;<a href="qbytearray.html">TQByteArray</a>&nbsp;&amp;&nbsp;array )
+<h3 class=fn><a name="TQImage-6"></a>TQImage::TQImage ( const&nbsp;<a href="tqbytearray.html">TQByteArray</a>&nbsp;&amp;&nbsp;array )
</h3>
Constructs an image from the binary data <em>array</em>. It tries to
guess the file format.
@@ -651,10 +651,10 @@ guess the file format.
explains how to add extra formats.
<p> <p>See also <a href="#load">load</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#loadFromData">TQPixmap::loadFromData</a>(), and <a href="tqimageio.html">TQImageIO</a>.
-<h3 class=fn>bool <a name="loadFromData-2"></a>TQImage::loadFromData ( <a href="qbytearray.html">TQByteArray</a>&nbsp;buf, const&nbsp;char&nbsp;*&nbsp;format = 0 )
+<h3 class=fn>bool <a name="loadFromData-2"></a>TQImage::loadFromData ( <a href="tqbytearray.html">TQByteArray</a>&nbsp;buf, const&nbsp;char&nbsp;*&nbsp;format = 0 )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
-<p> Loads an image from the <a href="qbytearray.html">TQByteArray</a> <em>buf</em>.
+<p> Loads an image from the <a href="tqbytearray.html">TQByteArray</a> <em>buf</em>.
<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mirror"></a>TQImage::mirror () const
</h3>
@@ -792,7 +792,7 @@ can be used, for example, to save an image directly into a
TQByteArray:
<pre>
TQImage image;
- <a href="qbytearray.html">TQByteArray</a> ba;
+ <a href="tqbytearray.html">TQByteArray</a> ba;
<a href="ntqbuffer.html">TQBuffer</a> buffer( ba );
buffer.<a href="ntqiodevice.html#open">open</a>( <a href="ntqfile.html#open">IO_WriteOnly</a> );
image.<a href="#save">save</a>( &amp;buffer, "PNG" ); // writes image into ba in PNG format