Maxon Developers Maxon Developers
    • Documentation
      • Cinema 4D Python API
      • Cinema 4D C++ API
      • Cineware API
      • ZBrush Python API
      • ZBrush GoZ API
      • Code Examples on Github
    • Forum
    • Downloads
    • Support
      • Support Procedures
      • Registered Developer Program
      • Plugin IDs
      • Contact Us
    • Categories
      • Overview
      • News & Information
      • Cinema 4D SDK Support
      • Cineware SDK Support
      • ZBrush 4D SDK Support
      • Bugs
      • General Talk
    • Unread
    • Recent
    • Tags
    • Users
    • Login

    Create Icon In C4D

    SDK Help
    0
    3
    364
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • H
      Helper
      last edited by

      THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

      On 15/02/2004 at 05:29, xxxxxxxx wrote:

      User Information:
      Cinema 4D Version:   8.100 
      Platform:   Windows  ;   
      Language(s) :     C++  ;

      ---------
      Dear all,
      Anyone has any idea or sample how to create icon using C4D, and how to call it from c++ sdk?
      Thanks and regards in advance

      1 Reply Last reply Reply Quote 0
      • H
        Helper
        last edited by

        THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

        On 15/02/2004 at 12:02, xxxxxxxx wrote:

        I assuming you mean an icon for your plugin?
        It's really easy because C4D can use a tif image for an icon 🙂
        Simply render out a scene with a low resolution at about 32x32 and 24x24, make sure you choose TIFF for the filetype and enable the Alpha Channel option in the render settings.
        Your icon will be created and ready for c4d.
        You can tell what icon to use in the registerxxxxxxx method for your plugin type.
        For a toolplugin it would be

            
            
            
            
            Bool RegisterMyPlugin(void)
            
            
            
            
            {
            
            
            
            
            String name = "Plugin Name";
            
            
            
            
            return RegisterToolPlugin(PLUGIN_ID, name, 0, "pluginicon.tif", "Description of plugin", gNew plugin);
            
            
            
            
            }
            
            
            
        

        Have a look at the sdk examples, almost all the samples have icons

        1 Reply Last reply Reply Quote 0
        • H
          Helper
          last edited by

          THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

          On 15/02/2004 at 17:43, xxxxxxxx wrote:

          I think I am a bit confused now. What i am trying to do is creating the icon within the C4D toolbar. I have to create one image and put in into the C4D toolbar or creating my own toolbar. Can anyone tell me how to do that?
          Thanks and regards

          1 Reply Last reply Reply Quote 0
          • First post
            Last post