How to resize slide dimensions without resizing any objects on the slide?
IF you are competent to unzip the pptx file and modify the XML it can be done, the slide size will change but the pictures will not change (they will move though and you will have to adjust the positions)
Unzip > look for PPT > presentation XML and change the slide size values (p:sldSz) then rezip. Don't go there if this makes no sense and in any case keep a copy!
Relevant values are:
4:3         cx="9144000" cy="6858000"
16:10      cx="9144000" cy="5715000"
16:9        cx="9144000" cy="5143500"
This idea originally came from Steve Rindsberg.
=================
You can make a copy of your presentation, change the dimensions, then copy the distorted stuff from the original ppt in your copy.
=================
REF:
How to resize slide dimensions without resizing any objects on the slide?的更多相关文章
- Resize a UIImage the right way
		When deadlines loom, even skilled and experienced programmers can get a little sloppy. The pressure ... 
- How to Resize a Datafile (文档 ID 1029252.6)
		APPLIES TO: Oracle Database - Enterprise Edition - Version 9.2.0.1 and laterInformation in this docu ... 
- ionic slide组件使用
		ionic学习使用笔记 slide 组件的使用 开始做的时候,遇到了个要用ionic实现 有一系列的序列需要展示,但是当前页面上只能展示一小部分,剩余的在没有出现时是隐藏的,还得能滑动出现,但是又 ... 
- ionic学习使用笔记(二) slide 组件的使用
		开始做的时候,遇到了个要用ionic实现 有一系列的序列需要展示,但是当前页面上只能展示一小部分,剩余的在没有出现时是隐藏的,还得能滑动出现,但是又不能有滚动条. 之前使用jQuery来实现的话,其实 ... 
- 好的组件,无须太复杂 – KISSY Slide 组件简介
		KISSY Slide 组件首页:http://gallery.kissyui.com/slide/1.1/guide/index.html V1.1 New Featurs Slide是一个幻灯切换 ... 
- Jquery Mobile转场特效之slide | 小小iPhone开发
		Jquery Mobile转场特效之slide | 小小iPhone开发 2012 Jquery Mobile转场特效之slide 作者:小小 发布:2012-12-12 14:03 分类:j ... 
- iOS crash log 解析 symbol address = stack address - slide 运行时获取slide的api 利用dwarfdump从dsym文件中得到symbol
		概述: 为什么 crash log 内 Exception Backtrace 部分的地址(stack address)不能从 dsym 文件中查出对应的代码? 因为 ASLR(Address spa ... 
- swiper轮播图设置每组显示的个数及自定义slide宽度
		一.html演示代码: <div class="swiper-container"> <div class="swiper-wrapper"& ... 
- GifCam
		转载:http://blog.bahraniapps.com/?page_id=21 下载 http://pan.baidu.com/s/1c0vdHIw GifCam Note:GifCam c ... 
随机推荐
- html5-css列表和表格
			td{ /*width: 150px; height: 60px;*/ padding: 10px; text-align: center;} table{ width ... 
- session_start 统计实时访客人数
			void Session_Start(object sender, EventArgs e) { Application.Lock(); Application["OnLine"] ... 
- hashcat 中文文档
			hashcat 描述 hashcat是世界上最快,最先进的密码恢复工具. 此版本结合了以前基于CPU的hashcat(现在称为hashcat-legacy)和基于GPU的oclHashcat. H ... 
- 集合——iterator迭代器
			Iterator接口: Iterator接口使用: 其中,集合Collection接口的定义也是使用多态,必须要创建它的子类对象才行,子类接口也是不能直接创建对象的(List接口): 其中wihle的 ... 
- Class_third_实验报告
			设计思路:声明一个父类Shape并声明一个getArea()计算面积的空方法让子类Circle,Echelon,Triangle,Rectangle 继承父类的方法并根据类的不同重写getArea() ... 
- js如何获取服务器端时间?
			用js做时间校正,获取本机时间,是存在bug的. 使用js也可获取到服务器时间,原理是使用 ajax请求,返回的头部信息就含有服务器端的时间信息,获取到就可以了.以下: 1.依赖jQuery 代码: ... 
- [转载]SQL中EXISTS的用法
			比如在Northwind数据库中有一个查询为SELECT c.CustomerId,CompanyName FROM Customers cWHERE EXISTS(SELECT OrderID FR ... 
- java中避免乱码
			response.setContentType("text/html;charset=UTF-8"); 这个是在action中的 这个是在json中设置乱码的 contentTyp ... 
- 了解一下 Linux 上用于的 SSH 图形界面工具
			如果你碰巧喜欢好的图形界面工具,你肯定很乐于了解一些 Linux 上优秀的 SSH 图形界面工具.让我们来看看这三个工具,看看它们中的一个(或多个)是否完全符合你的需求. 在你担任 Linux 管理员 ... 
- P1216  数字金字塔
			P1216 数字金字塔 我们可以用 f [ i ] [ j ] 表示从(1,1)出发,到达(i,j)的最大权值和. (i , j)可以由(i - 1 , j)或者(i - 1 , j - 1)转化来 ... 
