Last active
October 10, 2023 13:26
Add_text_strip_outline.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "Add Outline", | |
"author": "tintwotin", | |
"version": (1, 0), | |
"blender": (3, 0, 0), | |
"location": "Text Strip > Style > Add Outline", | |
"description": "Add outline to text strips", | |
"warning": "", | |
"doc_url": "", | |
"category": "Sequencer", | |
} | |
import bpy | |
class SEQUENCER_OT_outline(bpy.types.Operator): | |
"""Add outlines to selected text strips""" | |
bl_label = "Add Outline" | |
bl_idname = "sequencer.outline" | |
bl_options = {"REGISTER", "UNDO"} | |
@classmethod | |
def poll(cls, context): | |
return context.scene and context.scene.sequence_editor | |
def execute(self, context): | |
scene = bpy.context.scene | |
sequencer = bpy.ops.sequencer | |
context = bpy.context.scene.sequence_editor | |
strips = bpy.context.selected_editable_sequences | |
strips = sorted(strips, key=lambda strip: strip.frame_final_start) | |
for i in range(0, len(strips)): | |
if strips[i].type == "TEXT": | |
# Deselect all strips. | |
for seq in bpy.data.scenes["Scene"].sequence_editor.sequences_all: | |
seq.select = False | |
# Dublicate foreground text. | |
strips[i].select = True | |
strips[i].use_box = False | |
strips[i].use_shadow = False | |
bpy.ops.sequencer.duplicate_move( | |
SEQUENCER_OT_duplicate={}, TRANSFORM_OT_seq_slide={"value": (0, 2)} | |
) | |
# Add Glow strip. | |
new_strip = scene.sequence_editor.sequences.new_effect( | |
name="Outline", | |
channel=strips[i].channel + 1, | |
type="GLOW", | |
frame_start=10, | |
frame_end=35, | |
seq1=strips[i], | |
) | |
outline_width = int(strips[i].font_size / 20) # Dynamic outline width | |
new_strip.blur_radius = outline_width | |
new_strip.color_multiply = 10 # Outline opacity | |
new_strip.quality = 1 | |
new_strip.threshold = 0 | |
new_strip.use_only_boost = True | |
new_strip.boost_factor = 1 | |
new_strip.blend_type = "ALPHA_OVER" | |
# Add Color Balance modifier and set to black. | |
context.active_strip = new_strip | |
sequencer.strip_modifier_add(type="COLOR_BALANCE") | |
new_strip.modifiers["Color Balance"].color_balance.lift = (0, 0, 0) | |
new_strip.modifiers["Color Balance"].color_balance.gamma = (0, 0, 0) | |
new_strip.modifiers["Color Balance"].color_balance.gain = (0, 0, 0) | |
return {"FINISHED"} | |
def panel_append(self, context): | |
self.layout.separator() | |
self.layout.operator("sequencer.outline") | |
def register(): | |
bpy.utils.register_class(SEQUENCER_OT_outline) | |
bpy.types.SEQUENCER_PT_effect_text_style.append(panel_append) | |
def unregister(): | |
bpy.utils.unregister_class(SEQUENCER_OT_outline) | |
bpy.types.SEQUENCER_PT_effect_text_style.remove(panel_append) | |
if __name__ == "__main__": | |
register() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment