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 pmWhat 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
-
Jose Lizarraga
June 17, 2013 at 9:55 pmHi 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 amHello
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());
}
}
}
Reply to this Discussion! Login or Sign Up