Ошибка рисования текста на NSImage в PyObjC - PullRequest
1 голос
/ 05 августа 2009

Я пытаюсь наложить изображение на какой-нибудь текст, используя PyObjC, но стараюсь ответить на мой вопрос, «Аннотировать изображения с помощью инструментов, встроенных в OS X» . Ссылаясь на CocoaMagic , замену RubyObjC на RMagick , я пришел к следующему:

#!/usr/bin/env python

from AppKit import *

source_image = "/Library/Desktop Pictures/Nature/Aurora.jpg"
final_image = "/Library/Desktop Pictures/.loginwindow.jpg"
font_name = "Arial"
font_size = 76
message = "My Message Here"

app = NSApplication.sharedApplication()  # remove some warnings

# read in an image
image = NSImage.alloc().initWithContentsOfFile_(source_image)
image.lockFocus()

# prepare some text attributes
text_attributes = NSMutableDictionary.alloc().init()
font = NSFont.fontWithName_size_(font_name, font_size)
text_attributes.setObject_forKey_(font, NSFontAttributeName)
text_attributes.setObject_forKey_(NSColor.blackColor, NSForegroundColorAttributeName)

# output our message
message_string = NSString.stringWithString_(message)
size = message_string.sizeWithAttributes_(text_attributes)
point = NSMakePoint(400, 400)
message_string.drawAtPoint_withAttributes_(point, text_attributes)

# write the file
image.unlockFocus()
bits = NSBitmapImageRep.alloc().initWithData_(image.TIFFRepresentation)
data = bits.representationUsingType_properties_(NSJPGFileType, nil)
data.writeToFile_atomically_(final_image, false)

Когда я запускаю его, я получаю это:

Traceback (most recent call last):
  File "/Users/clinton/Work/Problems/TellAtAGlance/ObviouslyTouched.py", line 24, in <module>
    message_string.drawAtPoint_withAttributes_(point, text_attributes)
ValueError: NSInvalidArgumentException - Class OC_PythonObject: no such selector: set

Просматривая документы для drawAtPoint: withAttributes :, он говорит: «Вы должны вызывать этот метод только тогда, когда NSView имеет фокус». NSImage не является подклассом NSView, но я надеюсь, что это сработает, и что-то очень похожее работает в примере Ruby.

Что мне нужно изменить, чтобы сделать эту работу?


Я переписал код, преобразуя его, строка за строкой, в инструмент Objective-C Foundation. Работает, без проблем. [Я был бы рад опубликовать, если здесь, если есть причина для этого.]

Тогда возникает вопрос:

[message_string drawAtPoint:point withAttributes:text_attributes];

отличается от

message_string.drawAtPoint_withAttributes_(point, text_attributes)

? Есть ли способ сказать, какой "OC_PythonObject" вызывает NSInvalidArgumentException?

1 Ответ

1 голос
/ 25 августа 2009

Вот проблемы в приведенном выше коде:

text_attributes.setObject_forKey_(NSColor.blackColor, NSForegroundColorAttributeName)
->
text_attributes.setObject_forKey_(NSColor.blackColor(), NSForegroundColorAttributeName)

bits = NSBitmapImageRep.alloc().initWithData_(image.TIFFRepresentation)
data = bits.representationUsingType_properties_(NSJPGFileType, nil)
->
bits = NSBitmapImageRep.imageRepWithData_(image.TIFFRepresentation())
data = bits.representationUsingType_properties_(NSJPEGFileType, None)

Незначительные опечатки.

Обратите внимание, что среднюю часть кода можно заменить следующим более читаемым вариантом:

# prepare some text attributes
text_attributes = { 
    NSFontAttributeName : NSFont.fontWithName_size_(font_name, font_size),
    NSForegroundColorAttributeName : NSColor.blackColor() 
}

# output our message 
NSString.drawAtPoint_withAttributes_(message, (400, 400), text_attributes)

Я узнал об этом, посмотрев исходный код NodeBox , двенадцать строк psyphography.py и cocoa.py , особенно save и _getImageData методы.

...