Esempio n. 1
0
        void iDS.Save(Bitmap b, string fileName) // в файл
        {
            //Load an existing image

            string path = fileName.Substring(0,fileName.Length - 3);
            path = path + "tiff";


            b.Save( path, System.Drawing.Imaging.ImageFormat.Tiff);

            using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(path))
                {
                    //Create an instance of PsdOptions and set it’s various properties
                    Aspose.Imaging.ImageOptions.PsdOptions psdOptions = new Aspose.Imaging.ImageOptions.PsdOptions();
                    psdOptions.ColorMode = Aspose.Imaging.FileFormats.Psd.ColorModes.RGB;
                    psdOptions.CompressionMethod = Aspose.Imaging.FileFormats.Psd.CompressionMethod.RLE;
                    psdOptions.Version = 4;

                    //Save image to disk in PSD format
                    image.Save(fileName, psdOptions);
                 }

            File.Delete(path);
            
        }
Esempio n. 2
0
        public static void Main(string[] args)
        {
            // The path to the documents directory.
            string dataDir = Aspose.Imaging.Examples.Utils.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

            //Load an existing image
            using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(dataDir + "sample.bmp"))
            {
                //Create an instance of PsdOptions and set it’s various properties
                Aspose.Imaging.ImageOptions.PsdOptions psdOptions = new Aspose.Imaging.ImageOptions.PsdOptions();
                psdOptions.ColorMode         = Aspose.Imaging.FileFormats.Psd.ColorModes.RGB;
                psdOptions.CompressionMethod = Aspose.Imaging.FileFormats.Psd.CompressionMethod.Raw;
                psdOptions.Version           = 4;

                //Save image to disk in PSD format
                image.Save(dataDir + "output.psd", psdOptions);

                // Display Status.
                System.Console.WriteLine("Export to PSD performed successfully.");
            }
        }
        public static void Main(string[] args)
        {
            // The path to the documents directory.
            string dataDir = Aspose.Imaging.Examples.Utils.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

            //Load an existing image
            using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(dataDir + "sample.bmp"))
            {
                //Create an instance of PsdOptions and set it’s various properties
                Aspose.Imaging.ImageOptions.PsdOptions psdOptions = new Aspose.Imaging.ImageOptions.PsdOptions();
                psdOptions.ColorMode = Aspose.Imaging.FileFormats.Psd.ColorModes.RGB;
                psdOptions.CompressionMethod = Aspose.Imaging.FileFormats.Psd.CompressionMethod.Raw;
                psdOptions.Version = 4;

                //Save image to disk in PSD format
                image.Save(dataDir + "output.psd", psdOptions);

                // Display Status.
                System.Console.WriteLine("Export to PSD performed successfully.");
            }
        }