search
HomeDatabaseMysql TutorialInno setup 常用修改技巧
Inno setup 常用修改技巧Jun 07, 2016 pm 03:23 PM
httpsetupReviseCommonly usedSkill

http://www.cnblogs.com/awei0611/archive/2010/06/09.html 1 、如何让协议许可页面默认选中我同意按钮 [delphi] view plaincopyprint? [code] procedure InitializeWizard(); begin WizardForm . LICENSEACCEPTEDRADIO . Checked := true ; end ; [code]pro

http://www.cnblogs.com/awei0611/archive/2010/06/09.html



1 、如何让协议许可页面默认选中我同意按钮

[delphi] view plaincopyprint?

  1. [code]
  2. procedure InitializeWizard();
  3. begin
  4. WizardForm.LICENSEACCEPTEDRADIO.Checked := true;
  5. end;
[code]
procedure InitializeWizard();
begin
WizardForm.LICENSEACCEPTEDRADIO.Checked := true;
end;


2、自定义安装程序右上角图片大小

[delphi] view plaincopyprint?

  1. [code]
  2. procedure InitializeWizard();
  3. begin
  4. WizardForm.WizardSmallBitmapImage.width:=150; //设置页眉图片的大小
  5. WizardForm.WizardSmallBitmapImage.left:=WizardForm.width-150; //设置左边页眉留出的空隙
  6. WizardForm.PAGENAMELABEL.width:=0; //设置标题文字显示的大小
  7. WizardForm.PAGEDESCRIPTIONLABEL.width:=0; //设置标题文字显示的大小
  8. end;
[code]
procedure InitializeWizard();
begin
WizardForm.WizardSmallBitmapImage.width:=150; //设置页眉图片的大小
WizardForm.WizardSmallBitmapImage.left:=WizardForm.width-150; //设置左边页眉留出的空隙
WizardForm.PAGENAMELABEL.width:=0; //设置标题文字显示的大小
WizardForm.PAGEDESCRIPTIONLABEL.width:=0; //设置标题文字显示的大小
end;


或者
//自定义安装向导小图片

[delphi] view plaincopyprint?

  1. [code]
  2. procedure InitializeWizard();
  3. begin
  4. Wizardform.WizardSmallBitmapImage.left:= WizardForm.width-164; //自定义安装向导小图片显示位置
  5. WizardForm.WizardSmallBitmapImage.width:=164; //自定义安装向导小图片宽度
  6. Wizardform.PageNameLabel.width:= 495 - 164 -36; //这儿必须定义,数值根据图片宽度更改,显示软件名称的位置
  7. Wizardform.PageDescriptionLabel.width:= 495 - 164 -42; //显示页面信息的位置
  8. end;
[code]
procedure InitializeWizard();
begin
Wizardform.WizardSmallBitmapImage.left:= WizardForm.width-164; //自定义安装向导小图片显示位置
WizardForm.WizardSmallBitmapImage.width:=164; //自定义安装向导小图片宽度
Wizardform.PageNameLabel.width:= 495 - 164 -36; //这儿必须定义,数值根据图片宽度更改,显示软件名称的位置
Wizardform.PageDescriptionLabel.width:= 495 - 164 -42; //显示页面信息的位置
end;


3、自定义BeveledLabel显示代码

[delphi] view plaincopyprint?

  1. [code]
  2. procedure InitializeWizard();
  3. begin
  4. WizardForm.BeveledLabel.Enabled:=true; //允许显示
  5. WizardForm.BeveledLabel.Font.Color:=$00058451;; //显示颜色
  6. WizardForm.BeveledLabel.Font.Style := WizardForm.BeveledLabel.Font.Style + [fsBold]; //显示字体
  7. WizardForm.BeveledLabel.Left:=5; //显示位置
  8. end;
[code]
procedure InitializeWizard();
begin
WizardForm.BeveledLabel.Enabled:=true; //允许显示
WizardForm.BeveledLabel.Font.Color:=$00058451;; //显示颜色
WizardForm.BeveledLabel.Font.Style := WizardForm.BeveledLabel.Font.Style + [fsBold]; //显示字体
WizardForm.BeveledLabel.Left:=5; //显示位置
end;


4、自定义安装向导图片

[delphi] view plaincopyprint?

  1. [code]
  2. procedure InitializeWizard();
  3. begin
  4. Wizardform.WELCOMELABEL1.left:= 18; //自定义欢迎页面标题1显示位置
  5. Wizardform.WELCOMELABEL2.left:= 18; //自定义欢迎页面标题2显示位置
  6. Wizardform.WizardBitmapImage.left:= WizardForm.width-164//自定义安装向导图片显示位置(显示大小,此处为居右显示)
  7. end;
[code]
procedure InitializeWizard();
begin
Wizardform.WELCOMELABEL1.left:= 18; //自定义欢迎页面标题1显示位置
Wizardform.WELCOMELABEL2.left:= 18; //自定义欢迎页面标题2显示位置
Wizardform.WizardBitmapImage.left:= WizardForm.width-164 //自定义安装向导图片显示位置(显示大小,此处为居右显示)
end;


5、显示出组件选择框 [Types]

[delphi] view plaincopyprint?

  1. Name: full; Description: 推荐
  2. Name: default; Description: 典型
  3. Name: custom; Description: 自定义; Flags: iscustom
  4. ;告诉安装程序这个类型是自定义类型。必须定义iscustom这个参数,才能显示出组件选择框
Name: full; Description: 推荐
Name: default; Description: 典型
Name: custom; Description: 自定义; Flags: iscustom
;告诉安装程序这个类型是自定义类型。必须定义iscustom这个参数,才能显示出组件选择框


6、定义[Messages]的颜色

[delphi] view plaincopyprint?

  1. [code]
  2. procedure InitializeWizard();
  3. begin
  4. WizardForm.BeveledLabel.Enabled:= True;
  5. WizardForm.BeveledLabel.Font.Color:= clblue;
  6. end;
[code]
procedure InitializeWizard();
begin
WizardForm.BeveledLabel.Enabled:= True;
WizardForm.BeveledLabel.Font.Color:= clblue;
end;


7、不显示一些特定的安装界面

[delphi] view plaincopyprint?

  1. [code]
  2. function ShouldSkipPage(PageID: Integer): Boolean;
  3. begin
  4. if PageID=wpReady then
  5. result := true;
  6. end;
  7. (*
  8. wpReady 是准备安装界面
  9. PageID查询 INNO帮助中的 Pascal 脚本: 事件函数常量
  10. 预定义向导页 CurPageID 值
  11. wpWelcome, wpLicense, wpPassword, wpInfoBefore, wpUserInfo, wpSelectDir, wpSelectComponents, wpSelectProgramGroup, wpSelectTasks, wpReady, wpPreparing, wpInstalling, wpInfoAfter, wpFinished
[code]
function ShouldSkipPage(PageID: Integer): Boolean; 
begin 
if PageID=wpReady then 
result := true; 
end;
(*
wpReady  是准备安装界面
PageID查询 INNO帮助中的 Pascal 脚本: 事件函数常量
预定义向导页 CurPageID 值
wpWelcome, wpLicense, wpPassword, wpInfoBefore, wpUserInfo, wpSelectDir, wpSelectComponents, wpSelectProgramGroup, wpSelectTasks, wpReady, wpPreparing, wpInstalling, wpInfoAfter, wpFinished

8、换行符号
在 [Messages] 换行符号为%n
在 MsgBox 中换行符号为 #13#10 //#13 为回车字符
9、颜色代码
(1)一个值形如 $bbggrr, 这里的 rr, gg 和 bb 指定了两位的亮度值(以十六进制表示)分别为红色,绿色和蓝色。
(2)预定义的颜色名称:
clBlack(黑色),clMaroon(暗红),clGreen(绿色),clOlive(橄榄绿),
clNavy(深蓝),clPurple(紫色),clTeal(深青),clGray(灰色),
clSilver(浅灰),clRed(红色),clLime(浅绿),clYellow(黄色),
clBlue(蓝色),clFuchsia(紫红),clAqua(青绿),clWhite(白色)。
10、inno代码注释符号
; 实例 —— ; 分号
// 实例 —— // 双斜杠 多用在code段
{ } 实例 —— {大括号 多用在code段}
注释符号均在英文输入法状态下输入
11、在运行卸载程序前显示弹出式消息

[delphi] view plaincopyprint?

  1. [code]
  2. function InitializeUninstall(): Boolean;
  3. begin
  4. if MsgBox('', mbConfirmation, MB_YESNO) = IDYES then
  5. result:=true
  6. else
  7. result:=false;
  8. end;
[code]
function InitializeUninstall(): Boolean;
begin
if MsgBox('', mbConfirmation, MB_YESNO) = IDYES then
result:=true
else
result:=false;
end;


12、安装、卸载时判断是否程序正在运行,卸载完成时自动打开网页

[delphi] view plaincopyprint?

  1. [code]
  2. var
  3. ErrorCode: Integer;
  4. IsRunning: Integer;
  5. // 安装时判断客户端是否正在运行
  6. function InitializeSetup(): Boolean;
  7. begin
  8. Result :=true; //安装程序继续
  9. IsRunning:=FindWindowByWindowName('东方宽频网络电视');
  10. while IsRunning0do
  11. begin
  12. if Msgbox('安装程序检测到客户端正在运行。' #13#13'您必须先关闭它然后单击“是”继续安装,或按“否”退出!', mbConfirmation, MB_YESNO) = idNO then
  13. begin
  14. Result :=false; //安装程序退出
  15. IsRunning :=0;
  16. endelsebegin
  17. Result :=true; //安装程序继续
  18. IsRunning:=FindWindowByWindowName('东方宽频网络电视');
  19. end;
  20. end;
  21. end;
  22. // 卸载时判断客户端是否正在运行
  23. function InitializeUninstall(): Boolean;
  24. begin
  25. Result :=true; //安装程序继续
  26. IsRunning:=FindWindowByWindowName('东方宽频网络电视');
  27. while IsRunning0do
  28. begin
  29. if Msgbox('安装程序检测到客户端正在运行。' #13#13'您必须先关闭它然后单击“是”继续安装,或按“否”退出!', mbConfirmation, MB_YESNO) = idNO then
  30. begin
  31. Result :=false; //安装程序退出
  32. IsRunning :=0;
  33. endelsebegin
  34. Result :=true; //安装程序继续
  35. IsRunning:=FindWindowByWindowName('东方宽频网络电视');
  36. end;
  37. end;
  38. end;
  39. procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
  40. begin
  41. case CurUninstallStep of
  42. usUninstall:
  43. begin// 开始卸载
  44. end;
  45. usPostUninstall:
  46. begin// 卸载完成
  47. // MsgBox('CurUninstallStepChanged:' #13#13 'Uninstall just finished.', mbInformation, MB_OK);
  48. // ...insert code to perform post-uninstall tasks here...
  49. ShellExec('open', 'http://www.dreams8.com', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
  50. end;
  51. end;
  52. end;
[code]
var
ErrorCode: Integer;
IsRunning: Integer;
// 安装时判断客户端是否正在运行   
function InitializeSetup(): Boolean;   
begin   
Result :=true;  //安装程序继续   
IsRunning:=FindWindowByWindowName('东方宽频网络电视');   
while IsRunning0 do  
begin   
if Msgbox('安装程序检测到客户端正在运行。'  #13#13 '您必须先关闭它然后单击“是”继续安装,或按“否”退出!', mbConfirmation, MB_YESNO) = idNO then   
begin   
Result :=false; //安装程序退出   
IsRunning :=0;   
end else begin   
Result :=true;  //安装程序继续   
IsRunning:=FindWindowByWindowName('东方宽频网络电视');   
end;   
end;   
end;   
// 卸载时判断客户端是否正在运行   
function InitializeUninstall(): Boolean;   
begin   
Result :=true;  //安装程序继续   
IsRunning:=FindWindowByWindowName('东方宽频网络电视');   
while IsRunning0 do  
begin   

if Msgbox('安装程序检测到客户端正在运行。'  #13#13 '您必须先关闭它然后单击“是”继续安装,或按“否”退出!', mbConfirmation, MB_YESNO) = idNO then   
begin   
Result :=false; //安装程序退出   
IsRunning :=0;   
end else begin   
Result :=true;  //安装程序继续   
IsRunning:=FindWindowByWindowName('东方宽频网络电视');     
end;   
end;   
end;   
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);   
begin   
case CurUninstallStep of   
usUninstall:     
begin // 开始卸载   
end;   
usPostUninstall:   
begin      // 卸载完成   
// MsgBox('CurUninstallStepChanged:' #13#13 'Uninstall just finished.', mbInformation, MB_OK);   
// ...insert code to perform post-uninstall tasks here...   
ShellExec('open', 'http://www.dreams8.com', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);   
end;   
end;   
end;   


13、 删除文件和删除文件夹

[delphi] view plaincopyprint?

  1. //删除文件 用 DeleteFile 只能删除一个文件,不能使用通配符来删除多个文件
  2. DeleteFile(ExpandConstant('{app}\abc.exe'));
  3. //删除所有文件及文件夹
  4. DelTree(ExpandConstant('{app}'), True, True, False);
//删除文件    用 DeleteFile 只能删除一个文件,不能使用通配符来删除多个文件
DeleteFile(ExpandConstant('{app}\abc.exe'));
//删除所有文件及文件夹
DelTree(ExpandConstant('{app}'), True, True, False);


14、BorderStyle
TFormBorderStyle = (bsNone, bsSingle, bsSizeable, bsDialog, bsToolWindow, bsSizeToolWin);
无边界式(bsNone) ,单边固定式(bsSingle),双边可变式(bsSizeable),对话框式(bsDialog)
15、if else

[delphi] view plaincopyprint?

  1. function NextButtonClick(CurPageID: Integer): Boolean;
  2. var
  3. ResultCode: Integer;
  4. begin
  5. Result := True;
  6. if (CurPageID = wpSelectDir) then
  7. begin
  8. MsgBox('AAAA', mbInformation, MB_OK);
  9. end
  10. else
  11. begin
  12. MsgBox('BBBB', mbInformation, MB_OK);
  13. end;
  14. end;
function NextButtonClick(CurPageID: Integer): Boolean; 
var 
ResultCode: Integer; 
begin 
Result := True; 
if (CurPageID = wpSelectDir) then 
begin 
MsgBox('AAAA', mbInformation, MB_OK); 
end 
else 
begin 
MsgBox('BBBB', mbInformation, MB_OK); 
end; 
end;


16、安装结束界面增加“设为首页”选项

[delphi] view plaincopyprint?

  1. [Tasks]
  2. Name: changestartpage; Description: "设置vistaqq为默认主页"
  3. [Registry]
  4. Root: HKCU; Subkey: "Software\Microsoft\Internet Explorer\Main"; ValueType: string; ValueName: "Start Page"; ValueData: "http://www.vistaqq.com"; tasks: changestartpage
[Tasks]
Name: changestartpage; Description: "设置vistaqq为默认主页"
[Registry]
Root: HKCU; Subkey: "Software\Microsoft\Internet Explorer\Main"; ValueType: string; ValueName: "Start Page"; ValueData: "http://www.vistaqq.com"; tasks: changestartpage


17、添加“关于”和网站链接按钮

[delphi] view plaincopyprint?

  1. [Code]
  2. procedure URLLabelOnClick(Sender: TObject);
  3. var
  4. ErrorCode: Integer;
  5. begin
  6. ShellExec('open', 'http://www.vistaqq.com', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
  7. end;
  8. procedure AboutButtonOnClick(Sender: TObject);
  9. begin
  10. MsgBox(#13'Vista 状态条风格盘符' #13 #13'本软件由jinn制作,希望各位登陆中天VIP工作室!' #13#13, mbInformation, MB_OK);
  11. end;
  12. var
  13. AboutButton, CancelButton: TButton;
  14. URLLabel: TNewStaticText;
  15. procedure InitializeWizard();
  16. begin
  17. { Create the pages }
  18. WizardForm.PAGENAMELABEL.Font.Color:= clred;
  19. WizardForm.PAGEDESCRIPTIONLABEL.Font.Color:= clBlue;
  20. WizardForm.WELCOMELABEL1.Font.Color:= clGreen;
  21. WizardForm.WELCOMELABEL2.Font.Color:= clblack;
  22. CancelButton := WizardForm.CancelButton;
  23. AboutButton := TButton.Create(WizardForm);
  24. AboutButton.Left := WizardForm.ClientWidth - CancelButton.Left - CancelButton.Width;
  25. AboutButton.Top := CancelButton.Top;
  26. AboutButton.Width := CancelButton.Width;
  27. AboutButton.Height := CancelButton.Height;
  28. AboutButton.Caption := '&About';
  29. AboutButton.OnClick := @AboutButtonOnClick;
  30. AboutButton.Parent := WizardForm;
  31. URLLabel := TNewStaticText.Create(WizardForm);
  32. URLLabel.Caption := '中天VIP工作室';
  33. URLLabel.Cursor := crHand;
  34. URLLabel.OnClick := @URLLabelOnClick;
  35. URLLabel.Parent := WizardForm;
  36. { Alter Font *after* setting Parent so the correct defaults are inherited first }
  37. URLLabel.Font.Style := URLLabel.Font.Style + [fsUnderline];
  38. URLLabel.Font.Color := clBlue;
  39. URLLabel.Top := AboutButton.Top + AboutButton.Height - URLLabel.Height - 2;
  40. URLLabel.Left := AboutButton.Left + AboutButton.Width + ScaleX(20);
  41. end;



18、去掉安装程序左上角“关于安装程序”的代码

[delphi] view plaincopyprint?

  1. procedure InitializeWizard();
  2. begin
  3. WizardForm.BorderIcons:= [biMinimize];
  4. end;
  5. procedure CurPageChanged(CurPage: Integer);
  6. begin
  7. if CurPage=wpWelcome then
  8. WizardForm.BorderIcons:= [biSystemMenu, biMinimize];
  9. end;
  10. 或者
  11. procedure InitializeWizard();
  12. begin
  13. WizardForm.BORDERICONS := [biHelp, biSystemMenu, biMinimize];
  14. end;
procedure InitializeWizard();
begin
WizardForm.BorderIcons:= [biMinimize];
end;
procedure CurPageChanged(CurPage: Integer);
begin
if CurPage=wpWelcome then
WizardForm.BorderIcons:= [biSystemMenu, biMinimize];
end;
或者
procedure InitializeWizard();
begin
WizardForm.BORDERICONS := [biHelp, biSystemMenu, biMinimize];
end;


19、自定义BeveledLabel文字
[Messages]
BeveledLabel=中天VIP工作室
20、自定义安装程序界面左上角“安装”文字
[message]
SetupAppTitle=需要的字
SetupWindowTitle=需要的字
21、自定义安装程序版本号
VersionInfoVersion=1.1
VersionInfoTextVersion=1.1
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
setup在电脑上什么意思setup在电脑上什么意思Feb 23, 2023 pm 02:06 PM

setup在电脑上的意思就是“安装”;通常的安装文件夹中,若是有setup文件,则双击setup文件就能安装这个程序;安装就是按照一定的程序、规格把机械或器材固定在一定的位置上,也指按照一定的方法、规格把机械或器材等固定在一定的地方。

聊聊vue3中setup函数的返回值聊聊vue3中setup函数的返回值Aug 09, 2022 am 10:26 AM

setup是vue3中的一个新的配置项,值为一个函数,我们在组件中用到的数据、方法等等,都要配置在setup中。

win7系统如何修改开机等待时间win7系统如何修改开机等待时间Jul 08, 2023 pm 06:49 PM

当我们使用win7系统时,在开机过程中,可能要等很长时间才进入系统,每一次启动都要浪费大量时间,如不希望每次开机都要等很长时间,可以修改开机等待时间,下面小编为大家介绍win7修改开机等待时间的方法。win7系统如何修改开机等待时间:1.点击win7系统桌面左下角的开始菜单,在菜单中选择“电脑”右键,然后选择“属性”选项;2.然后在计算机属性面板中,选择面板左边的“高级系统设置”项目;3.然后在系统属性弹出窗口中,切换到Advanced选项卡,在启动和故障恢复部分,点击Settings按钮;4.

怎么在Vue3中使用<script lang=“ts“ setup>语法糖怎么在Vue3中使用<script lang=“ts“ setup>语法糖May 16, 2023 pm 04:39 PM

迁移组件以下组件有两个道具(要显示的和一个标志)。基于这两个道具,计算模板中显示的小马图像的URL(通过另一个组件)。该组件还会在用户单击它时发出一个事件。PonyponyModelisRunningImageselectedPony.vue{{ponyModel.name}}import{computed,defineComponent,PropType}from'vue';importImagefrom'./Image.vue'

学习canvas框架 详解常用的canvas框架学习canvas框架 详解常用的canvas框架Jan 17, 2024 am 11:03 AM

探索Canvas框架:了解常用的Canvas框架有哪些,需要具体代码示例引言:Canvas是HTML5中提供的一个绘图API,通过它我们可以实现丰富的图形和动画效果。为了提高绘图的效率和便捷性,许多开发者开发了不同的Canvas框架。本文将介绍一些常用的Canvas框架,并提供具体代码示例,以帮助读者更深入地了解这些框架的使用方法。一、EaselJS框架Ea

Spring注解大揭秘:常用注解解析Spring注解大揭秘:常用注解解析Dec 30, 2023 am 11:28 AM

Spring是一个开源框架,提供了许多注解来简化和增强Java开发。本文将详细解释常用的Spring注解,并提供具体的代码示例。@Autowired:自动装配@Autowired注解可以用于自动装配Spring容器中的Bean。当我们在需要依赖的地方使用@Autowired注解时,Spring将会在容器中查找匹配的Bean并自动注入。示例代码如下:@Auto

15个常用的币圈逃顶指标技术分析15个常用的币圈逃顶指标技术分析Mar 03, 2025 pm 05:48 PM

十五大比特币逃顶指标深度解析:2025年市场展望本文深入分析了十五个常用的比特币逃顶指标,其中比特币Rhodl比率、USDT活期理财和山寨币季节指数已于2024年触及逃顶区间,引发市场关注。面对潜在风险,投资者该如何应对?让我们逐一解读这些指标,并探讨合理的应对策略。一、关键指标详解AHR999囤币指标:由ahr999创建,辅助比特币定投策略。当前值为1.21,处于观望区间,建议谨慎。链接AHR999逃顶指标:AHR999囤币指标的补充,用于识别市场顶部。当前值为2.48,本周

win10修改系统时间的步骤教程win10修改系统时间的步骤教程Jul 10, 2023 pm 06:49 PM

相信大家都知道,当电脑时间出现不准确的时候,我们是可以自行通过电脑右下角的时间区域进行调整的。不过还是有的朋友刚接触电脑,不知道如何操作,下面我们来看看win10修改系统时间的步骤教程,大家快来看看吧。1、回到桌面,右键单击右下角的时间,出现菜单,点击调整日期和时间,如下图所示2、进入日期和时间调整界面,将自动设置开关关闭,如下图所示3、关闭自动设置后点击更改日期和时间下面的更改按钮,如下图所示4、进入调整界面,点击小时和分后面的箭头,如下图所示5、出现小时和分钟拨轮,调整时间,如下图所示以上就

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),