0

私のアプリでは、画像をキャプチャしてフレームを追加します...最終画像(元の画像+フレーム)にカスタムテキストを追加する機能もあります。次のコードを使用してテキストを描画しています。

    -(UIImage *)addText:(UIImage *)img text:(NSString *)textInput
{
    CGFloat imageWidth = img.size.width;
    CGFloat imageHeigth = img.size.height;

    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    CGContextRef context = CGBitmapContextCreate(NULL, imageWidth, imageHeigth, 8, 
                                                 4 * imageWidth, colorSpace, kCGImageAlphaPremultipliedFirst);
    CGContextDrawImage(context, CGRectMake(0, 0, imageWidth, imageHeigth), img.CGImage);
    CGContextSetCMYKFillColor(context, 0.0, 0.0, 0.0, 1.0,1);
    CGContextSetFont(context, customFont);
    UIColor * strokeColor = [UIColor blackColor];
    CGContextSetFillColorWithColor(context, strokeColor.CGColor); 

    CGContextSetFontSize(context, DISPLAY_FONT_SIZE * DisplayToOutputScale);

    // Create an array of Glyph's the size of text that will be drawn.
    CGGlyph textToPrint[[textInput length]];
    for (int i = 0; i < [textInput length]; ++i) 
    { 
        // Store each letter in a Glyph and subtract the MagicNumber to get appropriate value.
        textToPrint[i] = [textInput  characterAtIndex:i] + 3 - 32;
    }

    // First pass to be displayed invisible, will be used to calculate the length of the text in glyph
    CGContextSetTextDrawingMode(context, kCGTextInvisible);
    CGContextShowGlyphsAtPoint(context, 0 , 0 , textToPrint, [textInput length]);
    CGPoint endPoint = CGContextGetTextPosition(context);   

    // Calculate position of text on white border frame
    CGFloat xPos = (imageWidth/2.0f) - (endPoint.x/2.0f);
    CGFloat yPos; 

    yPos = 30 * DisplayToOutputScale;


    // Toggle off invisible mode, we are ready to draw the text
    CGContextSetTextDrawingMode(context, kCGTextFill); 
    CGContextShowGlyphsAtPoint(context, xPos , yPos , textToPrint, [textInput length]);

    // Extract resulting image
    CGImageRef imageMasked = CGBitmapContextCreateImage(context);
    CGContextRelease(context);
    CGColorSpaceRelease(colorSpace);

    return [UIImage imageWithCGImage:imageMasked];
}

UIImageJPEGRepresentation を使用して画像をメールで送信し、データを添付します。

カスタム テキストを追加せずに画像をメールで送信すると、画像のサイズが 1050 x 1275 から 2100 x 2550 に増加しますが、これは奇妙です。しかし、テキストを追加して画像をメールで送信すると、画像のサイズは変わりません。なぜこれが起こるのか誰でも説明できますか?? UIImage から UIData への変換に何か関係があると思います。

ありがとう

4

1 に答える 1

0

私も同じ問題を抱えていました。スケール 1 でコンテキストを開始して修正します。

UIGraphicsBeginImageContextWithOptions(size, YES, 1.0);
于 2013-04-17T09:48:01.183 に答える