Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Apple Final Cut Pro Legacy Creating A TIFF Sequence Question

  • Creating A TIFF Sequence Question

    Posted by Ryan Tweedy on June 15, 2013 at 4:22 pm

    What is the best way for me to create a TIFF sequence for the following: My project is in FCP7 and its 1920x1080p Apple Pro Res 422 30 FPS. I need to turn that into a TIFF sequence. What is my best option?

    Thanks!

    Abigail Klinton replied 12 years, 7 months ago 4 Members · 3 Replies
  • 3 Replies
  • Rafael Amador

    June 16, 2013 at 10:52 am

    In QT you have an “Export Still Sequence” option.
    rafael

  • Jose Lizarraga

    June 17, 2013 at 9:55 pm

    Hi Ryan
    If you export using Quicktime Conversion it should give you the option to create an image sequence.

  • Abigail Klinton

    September 17, 2013 at 7:36 am

    Hello
    Here is my method to create a tiff sequence:
    using RasterEdge.Imaging.TIFF;
    using RasterEdge.Imaging.Basic.Codec;
    using RasterEdge.Imaging.Basic.Core;
    using RasterEdge.Imaging.Basic;

    namespace WindowsApplication2
    {
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    int width = 100;
    int height = 60;

    /// data[]: a byte array to contain color data (as same format as Image Data PixelArray in BMP file)
    /// caller must provide correct color data; otherwise, unpredictable error may happen
    byte[] data = new byte[width * height * 3];
    // set bottom 20 lines to red
    for (int rowIdx = 0; rowIdx < 20; rowIdx++)
    {
    for (int i = 0; i < width; i++) data[width * rowIdx * 3 + i * 3 + 2] = 0xFF;
    }
    // set top 10 lines to blue
    for (int rowIdx = 0; rowIdx < 10; rowIdx++)
    {
    for (int i = 0; i < width; i++) data[width * (height – 1 – rowIdx) * 3 + i * 3] = 0xFF;
    }

    REImage reImage = new REImage(width, height, ImageMode.RGB888, data);

    REFile.SaveImageFile(reImage, “c:/reimage.tif”, new TIFEncoder());

    }
    }
    }

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy