| Home 目次>ApplicationKit>NSGraphicsContext | |
graphicsContextWithAttributes:
属性の辞書からグラフィックコンテキストを作って返します
+(NSGraphicsContext *) graphicsContextWithAttributes:(NSDictionary *)attributes
【返り値】 | |
| NSGraphicsContext * | グラフィックス・コンテキスト |
| 【パラメータ】 | |
| attributes | 属性の辞書 |
【解説】
属性の辞書からグラフィックコンテキストを作って返します。
【attributes】
● NSGraphicsContextDestinationAttributeName
NSWinodwNSWindow、NSMutableData、NSURL
● NSGraphicsContextRepresentationFormatAttributeName サポートする画像フォーマット
NSGraphicsContextPSFormat
NSGraphicsContextPDFFormat
【例文】
#import "Controller.h"
@implementation Controller
- ( IBAction )pushButton:( id )sender
{
NSDictionary *dic =
[NSDictionary dictionaryWithObjectsAndKeys:
@"NSWindow" , @"NSGraphicsContextDestinationAttributeName" ,
@"NSGraphicsContextPDFFormat" , @"NSGraphicsContextRepresentationFormatAttributeName" ,
nil ];
NSGraphicsContext *gCon = [NSGraphicsContext graphicsContextWithAttributes:dic];
NSLog([gCon className]);
NSLog([[gCon attributes] description]);
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSGraphicsContext | 修正日2006.12.26 |