YCbCrSubsampling
TiffOptions.YCbCrSubsampling property
Liest oder setzt die Subsampling-Faktoren für YCbCr photometric.
public ushort[] YCbCrSubsampling { get; set; }
Eigentumswert
Die Subsampling-Faktoren für YCbCr photometrisch.
Ausnahmen
Ausnahme | Bedingung |
---|---|
TiffImageException | Ungültige Feldlänge. Das YCbCrSubsampling-Feld muss zwei Werte enthalten. |
ArgumentNullException | Wert |
Beispiele
Dieses Beispiel zeigt, wie Sie ein Rasterbild mit verschiedenen Optionen im TIFF-Format speichern.
[C#]
string dir = "c:\\temp\\";
Aspose.Imaging.ImageOptions.TiffOptions saveOptions = new Aspose.Imaging.ImageOptions.TiffOptions(Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default);
// Setze 8 Bits für jede Farbkomponente.
saveOptions.BitsPerSample = new ushort[] { 8, 8, 8 };
// Lege die Big-Endian-Byte-Reihenfolge fest (Motorola)
saveOptions.ByteOrder = Aspose.Imaging.FileFormats.Tiff.Enums.TiffByteOrder.BigEndian;
// Legen Sie die LZW-Komprimierung fest.
saveOptions.Compression = Aspose.Imaging.FileFormats.Tiff.Enums.TiffCompressions.Lzw;
// Ermöglicht die Reduzierung der Größe von Halbtonbildern.
// Derzeit wird dieses Feld nur mit LZW-Kodierung verwendet, da LZW wahrscheinlich das einzige TIFF-Kodierungsschema ist
// die erheblich von einem Prädiktorschritt profitiert.
saveOptions.Predictor = Imaging.FileFormats.Tiff.Enums.TiffPredictor.Horizontal;
// Legen Sie das RGB-Farbmodell fest.
saveOptions.Photometric = Aspose.Imaging.FileFormats.Tiff.Enums.TiffPhotometrics.Rgb;
// Für YCbCr können Sie eine der folgenden Möglichkeiten verwenden:
// YCbCrSubSampling-Feld JPEG-Sampling-Faktoren
// ----------------------------------------------
// 1,1 1x1, 1x1, 1x1
// 2,1 2x1, 1x1, 1x1
// 2,2(Standardwert) 2x2, 1x1, 1x1
// saveOptions.YCbCrSubsampling = new ushort[] { 2, 2 };
// Alle Farbkomponenten werden in einer einzigen Ebene gespeichert.
saveOptions.PlanarConfiguration = Aspose.Imaging.FileFormats.Tiff.Enums.TiffPlanarConfigs.Contiguous;
// Erstellen Sie einen TIFF-Frame von 100 x 100 px.
using (Aspose.Imaging.Image image = new Aspose.Imaging.FileFormats.Bmp.BmpImage(100, 100))
{
// Füllen Sie das gesamte Bild mit dem blau-gelben Farbverlauf.
Aspose.Imaging.Brushes.LinearGradientBrush gradientBrush = new Aspose.Imaging.Brushes.LinearGradientBrush(
new Aspose.Imaging.Point(0, 0),
new Aspose.Imaging.Point(image.Width, image.Height),
Aspose.Imaging.Color.Blue,
Aspose.Imaging.Color.Yellow);
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(image);
graphics.FillRectangle(gradientBrush, image.Bounds);
image.Save(dir + "output.tif", saveOptions);
}
Siehe auch
- class TiffOptions
- namensraum Aspose.Imaging.ImageOptions
- Montage Aspose.Imaging