Supercharge your PowerPoint productivity with
Supercharge your PPT Productivity with PPTools - Click here to learn more.

Proud member of

PPTools

Image Export converts PowerPoint slides to high-quality images.

PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements

Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more

Resize your presentations quickly and without distortion

Language Selector switches the text in your presentation from one language to another

FixLinks prevents broken links when you distribute PowerPoint presentations

Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.

QuickTime and a TIFF (or JPEG) decompressor are needed to see this picture

Problem

You open a presentation created on a Mac in your Windows version of PowerPoint and get a message similar to these:

QuickTime(TM) and a Photo - JPEG decompressor are needed to see this picture. 
QuickTime(TM) and a TIFF decompressor are needed to see this picture. 

The message may mention some other type of decompressor.

Solution

PPT2000: QuickTime PICT Placeholder Appears in Place of Graphic

The problem, in a nutshell, is that PowerPoint/Windows doesn't support QuickTime compression; installing QuickTime on the PC won't help.

One Mac PowerPoint newsgroup visitor reports that he fixed the problem by opening the presentation in PowerPoint 2008 on his Mac then saving it to PowerPoint 97-2003 format.

Another approach is to re-inserting the graphic into PowerPoint in PowerPoint for Macintosh.

Note: DO NOT drag and drop or copy/paste the graphic into PowerPoint. That's what probably caused the problem in the first place.

These instructions are very generic. The menu options for your graphics program will be different; you'll probably need to do some experimenting to find the right set of options.

If you come up with a good recipe you'd like to include here, post a message in the PowerPoint Newsgroup.

Another possible fix

This is still in the testing stage, but it's worth a try (on a COPY of your presentation, please!).
This exports each picture in your presentation to a PNG file, deletes the picture, then reimports the PNG in its place.

Notes:

Sub PNG_Me()
' Exports pictures to PNG, reimports them

  Dim sPath As String
  Dim dEnlargementFactor

  ' EDIT THE FOLLOWING:
  ' Name of folder for temp files
  ' It should always end with a path separator character:
  ' \ for PC, : (colon) for Mac
  ' The folder must already exist
sPath = "Macintosh HD:temp:"

  ' We enlarge the images before exporting them
  ' The higher the enlargement factor, the higher the resolution of the converted file
  ' This also serves to "optimize" your file sizes somewhat
  dEnlargementFactor = 2

  ' =========== NO USER-SERVICEABLE PARTS PAST THIS POINT
  Dim oOriginalPic As Shape
  Dim oNewPic As Shape
  Dim oSl As Slide
  Dim oSh As Shape
  Dim dLeft As Double
  Dim dTop As Double
  Dim dheight As Double
  Dim dwidth As Double
  Dim sImageName As String

  For Each oSl In ActivePresentation.Slides
    For Each oSh In oSl.Shapes
        ' Touch only pictures
        If oSh.Type = msoPicture Then
            ' Touch only pictures that haven't yet been touched
            If Len(oSh.Tags("PINGED")) = 0 Then
                With oSh
                    sImageName = sPath & "Slide" & CStr(oSl.SlideID) & "_" & oSh.Name & ".PNG"
                    ' memorize size/position
                    dTop = .Top
                    dwidth = .width
                    dheight = .height
                    dLeft = .Left
                    ' Enlarge, then export to PNG; lock aspect ratio first
                    oSh.LockAspectRatio = msoTrue
                    oSh.height = oSh.height * dEnlargementFactor
                    oSh.Export sImageName, ppShapeFormatPNG
                    ' and delete the shape
                    .Delete
                End With
                ' import saved picture
                Set oNewPic = oSl.Shapes.AddPicture(sImageName, msoFalse, msoTrue, dLeft, dTop, dwidth, dheight)
                Call oNewPic.Tags.Add("PINGED", "PONGED")
            End If
        End If
    Next
  Next

End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Supercharge your PPT Productivity with PPTools

content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

QuickTime and a TIFF (or JPEG) decompressor are needed to see this picture
http://www.pptfaq.com/FAQ00534_QuickTime_and_a_TIFF_-or_JPEG-_decompressor_are_needed_to_see_this_picture.htm
Last update 07 June, 2011
Created: