Hi Mudassir,
I dont know what happend to the other thread, its there and i made it private and i cannot change it back to public.
Anyway i am posting the file please have a look at the attachment.
Thanks
Tajamal
Hi,
i might have a problem with powerpoints, which are squarer and others wider.
1. The question is can i use the same Masters for both type of presentation or do i need two different type of Masters?
2. can i somewhow set/change the color of the heading text. Lets say if i have powerpoint slide which has black heading text and i want to change this black color according to the Masters in pot file, can i do that ?
Can anyone help me.
Thanks
HI Tajamal,
I regret to inform you that I am awaiting response of our development team for your specified issue. As soon as some information is arrived, I will be happy to share that with you.
We are sorry for your inconvenience,
Hi Mudassir,
Could you elaborate any updates from development team?
Kind regards
Tajamal
Hi Tajamal,
Hi ,
lets try again.
Is it possible to make presentations with wide format and aspect ratio of 16:9?
When i make masters in a pot file they are created with aspect ratio of 4:3.
i hope this explains.
Thanks
Tajamal
Hi Tajamal,
Hi Mudassir,
Can you please give some code examples.
Thansk
Tajamal
Hi Tajamal,
PresentationEx pres = new PresentationEx();pres.SlideSize.Type = SlideSizeTypeEx.OnScreen16x9;pres.Write(“D:\Aspose Data\Temp.pptx”);
How would you generate pot files, my code which i have been using doesn’t include method CloneSlide in PresentationEx Class.
license.SetLicense(“Aspose.Slides.lic”);
var output = new Presentation();
var count = 0;
foreach (var slides in Directory.GetFiles(@“c:\temp”, “*.ppt”))
{
var pres = new Presentation(slides);
var intSlide = pres.Slides.Count;
for (var i = 0; i < intSlide; i++)
{
var _slide = pres.Slides[i];
if (_slide.SlideId >= 0x80000000)
{
var copy = pres.CloneSlide(_slide, count, output, new System.Collections.SortedList());
Console.WriteLine(string.Format("{1}: {0}", Path.GetFileNameWithoutExtension(slides),copy.SlideId - 0x80000000));
}
}
count++;
}
output.Masters.RemoveAt(0);
output.Write(@“C:\masters.pot”);
Hi Tajamal,
Please have a look on the presentation i have uploaded.
Hi Mudassir,
But that should be in wide format, why is it square?
I dont get it, do you?
KR
Tajamal
Hi Tajamal,
output.SlideSize = pres.SlideSize;