亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.h

?? 下載來的一個看圖軟件的源代碼
?? H
字號:
// This may look like C code, but it is really -*- C++ -*-//// Copyright Bob Friesenhahn, 1999, 2000, 2001, 2002, 2003//// Definition of Options//// Options which may be applied to an image. These options are the// equivalent of options supplied to ImageMagick utilities.//// This is an internal implementation class and is not part of the// Magick++ API//#if !defined(Magick_Options_header)#define Magick_Options_header#include "Magick++/Include.h"#include <string>#include "Magick++/Color.h"#include "Magick++/Geometry.h"#include "Magick++/Drawable.h"namespace Magick{  class MagickDLLDecl Image;  class Options  {  public:    Options( void );    Options( const Options& options_ );    ~Options();    // Remove pixel aliasing    void            antiAlias( bool flag_ );    bool            antiAlias( void ) const;        // Join images into a single multi-image file    void            adjoin ( bool flag_ );    bool            adjoin ( void ) const;        // Image background color    void            backgroundColor ( const Color &color_ );    Color           backgroundColor ( void ) const;        // Name of texture image to tile onto the image background    void            backgroundTexture ( const std::string &backgroundTexture_ );    std::string     backgroundTexture ( void ) const;        // Image border color    void            borderColor ( const Color &color_ );    Color           borderColor ( void ) const;        // Text bounding-box base color (default none)    void            boxColor ( const Color &boxColor_ );    Color           boxColor ( void ) const;        // Colors within this distance are considered equal    void            colorFuzz ( double fuzz_ );    double          colorFuzz ( void ) const;        // Compression type ( NoCompression, BZipCompression,    // FaxCompression, JPEGCompression, LZWCompression,    // RLECompression, or ZipCompression )    void            compressType ( CompressionType compressType_ );    CompressionType compressType ( void ) const;    // Enable printing of debug messages from ImageMagick    void            debug ( bool flag_ );    bool            debug ( void ) const;        // Vertical and horizontal resolution in pixels of the image    void            density ( const Geometry &geomery_ );    Geometry        density ( void ) const;    // Image depth (8 or 16)    void            depth ( unsigned int depth_ );    unsigned int    depth ( void ) const;    // Endianness (little like Intel or big like SPARC) for image    // formats which support endian-specific options.    void            endian ( EndianType endian_ );    EndianType      endian ( void ) const;    // Image filename to read or write    void            fileName ( const std::string &fileName_ );    std::string     fileName ( void ) const;    // Color to use when filling drawn objects    void            fillColor ( const Color &fillColor_ );    Color           fillColor ( void ) const;    // Fill pattern    void            fillPattern ( const MagickLib::Image *fillPattern_ );    const MagickLib::Image* fillPattern ( void  ) const;    // Rule to use when filling drawn objects    void            fillRule ( const FillRule &fillRule_ );    FillRule        fillRule ( void ) const;    // Font name    void            font ( const std::string &font_ );    std::string     font ( void ) const;    // Font point size    void            fontPointsize ( double pointSize_ );    double          fontPointsize ( void ) const;        std::string     format ( void ) const;    // Image interlace scheme    void            interlaceType ( InterlaceType interlace_ );    InterlaceType   interlaceType ( void ) const;       // Image format to write or read    void            magick ( const std::string &magick_ );    std::string     magick ( void ) const;        // Transparent color    void            matteColor ( const Color &matteColor_ );    Color           matteColor ( void ) const;   // Write as a monochrome image    void            monochrome ( bool monochromeFlag_ );    bool            monochrome ( void ) const;    // Preferred size and location of an image canvas.    void            page ( const Geometry &pageSize_ );    Geometry        page ( void ) const;    // Desired image quality factor    void            quality ( unsigned int quality_ );    unsigned int    quality ( void ) const;        // Maximum number of colors to quantize to    void            quantizeColors ( unsigned int colors_ );    unsigned int    quantizeColors ( void ) const;        // Colorspace to quantize in.    void            quantizeColorSpace ( ColorspaceType colorSpace_ );    ColorspaceType  quantizeColorSpace ( void ) const;        // Dither image during quantization.    void            quantizeDither ( bool ditherFlag_ );    bool            quantizeDither ( void ) const;        // Quantization tree-depth    void            quantizeTreeDepth ( unsigned int treeDepth_ );    unsigned int    quantizeTreeDepth ( void ) const;    // Units of resolution to interpret density    void            resolutionUnits ( ResolutionType resolutionUnits_ );    ResolutionType  resolutionUnits ( void ) const;    // Image size (required for raw formats)    void            size ( const Geometry &geometry_ );    Geometry        size ( void ) const;    // enabled/disable stroke anti-aliasing    void            strokeAntiAlias( bool flag_ );    bool            strokeAntiAlias( void ) const ;    // Color to use when drawing object outlines    void            strokeColor ( const Color &strokeColor_ );    Color           strokeColor ( void ) const;    // Control the pattern of dashes and gaps used to stroke    // paths. The strokeDashArray represents a list of numbers that    // specify the lengths of alternating dashes and gaps in user    // units. If an odd number of values is provided, then the list of    // values is repeated to yield an even number of values.    void            strokeDashArray ( const double* strokeDashArray_ );    const double*   strokeDashArray ( void ) const;    // While drawing using strokeDashArray, specify distance into the dash    // pattern to start the dash (default 0).    void            strokeDashOffset ( double strokeDashOffset_ );    double          strokeDashOffset ( void ) const;    // Specify the shape to be used at the end of open subpaths when    // they are stroked. Values of LineCap are UndefinedCap, ButtCap,    // RoundCap, and SquareCap.    void            strokeLineCap ( LineCap lineCap_ );    LineCap         strokeLineCap ( void ) const;        // Specify the shape to be used at the corners of paths (or other    // vector shapes) when they are stroked. Values of LineJoin are    // UndefinedJoin, MiterJoin, RoundJoin, and BevelJoin.    void            strokeLineJoin ( LineJoin lineJoin_ );    LineJoin        strokeLineJoin ( void ) const;    // Specify miter limit. When two line segments meet at a sharp    // angle and miter joins have been specified for 'lineJoin', it is    // possible for the miter to extend far beyond the thickness of    // the line stroking the path. The miterLimit' imposes a limit on    // the ratio of the miter length to the 'stroke_width'. The default    // value of this parameter is 4.    void            strokeMiterLimit ( unsigned int miterLimit_ );    unsigned int    strokeMiterLimit ( void ) const;    // Pattern image to use for stroked outlines    void            strokePattern ( const MagickLib::Image *strokePattern_ );    const MagickLib::Image* strokePattern ( void  ) const;   // Stroke width for drawing vector objects (default one)    void            strokeWidth ( double strokeWidth_ );    double          strokeWidth ( void ) const;    void            subImage ( unsigned int subImage_ );    unsigned int    subImage ( void ) const;    // Sub-frame number to return    void            subRange ( unsigned int subRange_ );    unsigned int    subRange ( void ) const;    // Annotation text encoding (e.g. "UTF-16")    void            textEncoding ( const std::string &encoding_ );    std::string     textEncoding ( void ) const;        void            tileName ( const std::string &tileName_ );    std::string     tileName ( void ) const;    // Image representation type    void            type ( const ImageType type_ );    ImageType       type ( void ) const;    // Origin of coordinate system to use when annotating with text or drawing    void            transformOrigin ( double tx_, double ty_ );    // Reset transformation parameters to default    void            transformReset ( void );    // Rotation to use when annotating with text or drawing    void            transformRotation ( double angle_ );    // Scale to use when annotating with text or drawing    void            transformScale ( double sx_, double sy_ );    // Skew to use in X axis when annotating with text or drawing    void            transformSkewX ( double skewx_ );    // Skew to use in Y axis when annotating with text or drawing    void            transformSkewY ( double skewy_ );    // Return verbose information about an image, or an operation    void            verbose ( bool verboseFlag_ );    bool            verbose ( void ) const;        void            view ( const std::string &view_ );    std::string     view ( void ) const;    // X11 display name    void            x11Display ( const std::string &display_ );    std::string     x11Display ( void ) const;        //    // Internal implementation methods.  Please do not use.    //    MagickLib::DrawInfo*       drawInfo( void );    MagickLib::ImageInfo *     imageInfo( void );    MagickLib::QuantizeInfo *  quantizeInfo( void );    // Construct using raw structures    Options( const MagickLib::ImageInfo* imageInfo_,             const MagickLib::QuantizeInfo* quantizeInfo_,             const MagickLib::DrawInfo* drawInfo_ );  protected:  private:        // Assignment not supported    Options& operator= ( const Options& );    MagickLib::ImageInfo*        _imageInfo;    MagickLib::QuantizeInfo*     _quantizeInfo;    MagickLib::DrawInfo*         _drawInfo;  };} // namespace Magick#endif // Magick_Options_header

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品成人免费观看| 中文字幕av一区 二区| 亚洲午夜视频在线| 99久久精品国产导航| 日韩一级二级三级| 成人禁用看黄a在线| 日韩av一级电影| 欧美日韩国产首页| 欧美午夜精品久久久久久超碰| 日韩一区二区在线看片| 蜜桃视频在线一区| 精品一区二区三区免费| 日韩黄色免费网站| 一区二区三区在线高清| 成人福利电影精品一区二区在线观看| 在线观看网站黄不卡| 久久亚洲影视婷婷| 成人免费高清在线| 亚洲色图20p| 91精品国产综合久久福利软件| 久久99精品久久久久久| 中文字幕一区二区三区视频| 在线精品国精品国产尤物884a| 三级亚洲高清视频| 久久久欧美精品sm网站| 色综合久久66| 久久精品噜噜噜成人av农村| 国产女人18毛片水真多成人如厕| 色播五月激情综合网| 99免费精品视频| 亚洲一区二区三区中文字幕 | 高清不卡一区二区在线| 亚洲日本欧美天堂| 日韩一区二区三区视频| 91蜜桃在线观看| 国内不卡的二区三区中文字幕| 亚洲伦理在线精品| 26uuu亚洲综合色| 欧美日韩精品专区| 99视频精品在线| 国模无码大尺度一区二区三区| 亚洲午夜精品在线| 国产精品国产三级国产aⅴ无密码| 6080国产精品一区二区| 一本久久综合亚洲鲁鲁五月天| 国产一区二区三区免费看| 香蕉久久一区二区不卡无毒影院 | 亚洲777理论| 中国av一区二区三区| 欧美一级xxx| 欧美日韩精品欧美日韩精品一| 丁香婷婷综合网| 精品午夜久久福利影院| 五月婷婷久久综合| 亚洲夂夂婷婷色拍ww47| 亚洲欧洲色图综合| 日本一区二区三区dvd视频在线| 日韩美女在线视频| 在线成人午夜影院| 欧美性videosxxxxx| 97se亚洲国产综合自在线| 国产剧情一区二区| 韩国欧美国产一区| 久久激五月天综合精品| 日韩精品一级二级| 性做久久久久久免费观看| 亚洲午夜精品网| 亚洲一区二区精品3399| 亚洲精品国产a久久久久久| 国产精品二三区| 国产精品午夜在线| 国产精品大尺度| 国产精品欧美久久久久一区二区| 国产日韩影视精品| 国产欧美一二三区| 国产三级精品三级在线专区| 国产欧美精品在线观看| 国产日韩亚洲欧美综合| 欧美激情在线看| 国产精品第一页第二页第三页| 中文字幕在线观看不卡| 国产精品理伦片| 亚洲精品视频在线观看免费| 亚洲激情自拍视频| 亚洲永久精品国产| 国产成人自拍高清视频在线免费播放| 精品一区二区免费在线观看| 狠狠色综合播放一区二区| 精品一区二区三区的国产在线播放| 精品一区二区免费看| 国产精品影视在线| 国产一区二区不卡老阿姨| 成人国产精品免费观看动漫| 99精品欧美一区二区三区小说| 色婷婷久久99综合精品jk白丝| 精品视频1区2区3区| 91精品国产综合久久福利软件| 精品国产3级a| 国产精品二区一区二区aⅴ污介绍| 综合分类小说区另类春色亚洲小说欧美 | 日韩精品电影在线观看| 美女免费视频一区二区| 国产精品一区二区91| 91色视频在线| 91精品国产色综合久久| 久久精品欧美一区二区三区麻豆| 国产精品免费丝袜| 五月天久久比比资源色| 国产精品亚洲午夜一区二区三区| 成人在线一区二区三区| 91国偷自产一区二区开放时间 | 精品久久久久久久久久久久久久久| 国产日韩综合av| 亚洲成人先锋电影| 国产精品亚洲人在线观看| 欧洲精品一区二区| 久久久久久日产精品| 亚洲免费观看在线观看| 日本成人在线一区| 99国产麻豆精品| 精品成人在线观看| 亚洲中国最大av网站| 国产一区二区看久久| 欧美色国产精品| 日本中文一区二区三区| 97久久超碰精品国产| 91麻豆精品91久久久久久清纯| 亚洲国产激情av| 日本不卡123| 在线观看视频一区二区欧美日韩| 欧美v国产在线一区二区三区| 亚洲综合一区在线| 成人免费观看av| 精品国精品国产| 五月天欧美精品| 91国内精品野花午夜精品| 国产欧美中文在线| 久久精品国产久精国产爱| 欧美中文字幕一区| 成人免费视频在线观看| 国产精品一区二区久激情瑜伽| 欧美一区二区三区视频| 一区二区三区中文在线观看| 国产电影一区二区三区| 欧美电视剧免费全集观看| 亚洲午夜久久久久久久久电影院| 成人精品一区二区三区四区| 精品国产乱码久久久久久1区2区| 午夜精品久久久久久久久| 日本久久电影网| 国产精品久久夜| 国产麻豆精品久久一二三| 欧美刺激脚交jootjob| 日韩av午夜在线观看| 欧美巨大另类极品videosbest| 亚洲狼人国产精品| 91视频免费观看| 中文字幕中文字幕在线一区| 国产精品 日产精品 欧美精品| 精品国产一区二区三区不卡| 久久99久国产精品黄毛片色诱| 欧美老肥妇做.爰bbww| 亚洲成人综合在线| 一区二区在线观看不卡| 亚洲三级小视频| 国产成人av电影在线观看| 欧美成人伊人久久综合网| 日本亚洲最大的色成网站www| 欧美伦理视频网站| 91天堂素人约啪| 精品国产凹凸成av人导航| 午夜成人在线视频| 91在线小视频| 国产午夜精品福利| 蜜臀av性久久久久蜜臀aⅴ| 欧美综合久久久| 国产精品美女久久久久aⅴ国产馆| 日韩电影在线免费看| 91国偷自产一区二区开放时间 | 国产午夜精品一区二区三区视频| 亚洲第一在线综合网站| 93久久精品日日躁夜夜躁欧美| 精品福利一区二区三区| 偷拍亚洲欧洲综合| 欧洲一区二区三区免费视频| 国产精品美女久久久久aⅴ| 国产精品正在播放| 久久久噜噜噜久久人人看| 日日夜夜精品视频免费| 欧美日韩精品欧美日韩精品一 | 中文字幕在线不卡一区二区三区| 国产一区在线观看麻豆| 日韩你懂的在线播放| 美洲天堂一区二卡三卡四卡视频| 在线精品国精品国产尤物884a| 亚洲乱码国产乱码精品精小说| 99久久婷婷国产综合精品| 国产精品久久久久影院| 99热精品国产| 亚洲一二三四久久|