Update of /cvsroot/wnd/wnd/wnd_doc/doc/gdip/ImageCodec
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28025/wnd_doc/doc/gdip/ImageCodec
Modified Files:
imagecodec.dtpl
Log Message:
combing over
Index: imagecodec.dtpl
===================================================================
RCS file: /cvsroot/wnd/wnd/wnd_doc/doc/gdip/ImageCodec/imagecodec.dtpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** imagecodec.dtpl 14 Aug 2005 15:55:47 -0000 1.1
--- imagecodec.dtpl 14 Aug 2005 18:18:05 -0000 1.2
***************
*** 7,10 ****
--- 7,11 ----
<P>
Initializes a class for handling image encoders
+ You use this class to iterate over all image decoders currently available on the system.
<P>
***************
*** 15,59 ****
<P>
Initializes a class for handling image encoders
-
-
- The class contains the following constants to interpret
- the Flags member of a ||type-ImageCodecInfo|| structure:
<br><br>
!
! <TABLE class="table1" BORDER="1">
! <TR>
! <TD>SupportBitmap</TD>
! <TD>the codec supports bitmaps</TD>
! <TR>
! <TR>
! <TD>BlockingDecode</TD>
! <TD>indicates that the codec blocks during decoding</TD>
! <TR>
! <TR>
! <TD>Builtin</TD>
! <TD>the codec is gdi+ builtin</TD>
! <TR>
! <TR>
! <TD>Decoder</TD>
! <TD>the codec supports decoding</TD>
! <TR>
! <TR>
! <TD>Encoder</TD>
! <TD>the codec supports encoding</TD>
! <TR>
! <TR>
! <TD>SeekableEncode</TD>
! <TD>indicates that the codec requires a seekable output stream</TD>
! <TR>
! <TR>
! <TD>SupportVector</TD>
! <TD>the codec supports vector images</TD>
! <TR>
! </TABLE>
!
! <br><br>
! You would use this class to iterate over all image encoders currently available on the system.
!
!
</P>
--- 16,21 ----
<P>
Initializes a class for handling image encoders
<br><br>
! You use this class to iterate over all image encoders currently available on the system.
</P>
***************
*** 65,73 ****
::item:: __iter__
<code>__iter__()</code><br>
! <P>Iterates over all available image encoders returning the next
||type-ImageCodecInfo|| in turn, describing an image encoder.
</P>
!
::item:: GetCodecSignature
<code>GetCodecSignature(Encoder)</code><br>
--- 27,70 ----
::item:: __iter__
<code>__iter__()</code><br>
! <P>Iterates over all available image de/encoders returning the next
||type-ImageCodecInfo|| in turn, describing an image encoder.
</P>
! ::item:: IsEncoder
! <code>IsEncoder()</code><br>
! <P>Returns True if the codec supports encoding, False otherwise
! </P>
!
! ::item:: IsDecoder
! <code>IsEncoder()</code><br>
! <P>Returns True if the codec supports decoding, False otherwise
! </P>
!
! ::item:: SuportsBitmap
! <code>SuportsBitmap()</code><br>
! <P>Returns True if the codec supports bitmaps, False otherwise
! </P>
!
! ::item:: SuportsVector
! <code>SuportsBitmap()</code><br>
! <P>Returns True if the codec supports vector graphics, False otherwise
! </P>
!
! ::item:: NeedsSeekableEncode
! <code>NeedsSeekableEncode()</code><br>
! <P>Returns True if the codec requires a seekable output stream, False otherwise
! </P>
!
! ::item:: NeedsBlockingDecode
! <code>NeedsBlockingDecode()</code><br>
! <P>Returns True if the codec is blocking during decoding, False otherwise
! </P>
!
! ::item:: IsBuiltin
! <code> IsBuiltin()</code><br>
! <P>Returns True if the codec is (gdi-plus) builtin, False otherwise
! </P>
!
!
::item:: GetCodecSignature
<code>GetCodecSignature(Encoder)</code><br>
|